fyf 11 달 전
부모
커밋
30fd1aa491
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      app/src/main/java/com/bonait/bnframework/business/ExecuteTheRecipe.java

+ 2
- 2
app/src/main/java/com/bonait/bnframework/business/ExecuteTheRecipe.java 파일 보기

@@ -233,7 +233,7 @@ public class ExecuteTheRecipe {
String name = "料仓" + silos.num + "下料完成";
final boolean[] IsComplete = {false};
long a = System.currentTimeMillis();
while (!IsComplete[0]) {
while (!IsComplete[0] && !IsForcedEnd) {
if ((System.currentTimeMillis() - a) > 1000 * whileTime) {
break;
} else {
@@ -366,7 +366,7 @@ public class ExecuteTheRecipe {
}
});
long a = System.currentTimeMillis();
while (!IsComplete[0]) {
while (!IsComplete[0]&& !IsForcedEnd) {
if ((System.currentTimeMillis() - a) > 1000 * whileTime) {
break;
}


불러오는 중...
취소
저장