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;
}


正在加载...
取消
保存