Skip to content

Commit b249e3d

Browse files
committed
fix(distiller): 26.1.2 incompatibility
1 parent b6606f5 commit b249e3d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/main/java/com/dre/brewery/BDistiller.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ public void run() {
216216
brewTime--; // count down.
217217
if (brewTime > 1) {
218218
stand.setBrewingTime((int) ((float) brewTime / ((float) runTime / (float) DISTILLTIME)) + 1);
219+
stand.update();
219220
return;
220221
}
221222

@@ -229,6 +230,7 @@ public void run() {
229230
brewTime = -1; // go again.
230231
Logging.debugLog("Can distill more! Continuing.");
231232
}
233+
stand.update();
232234
});
233235
}
234236

0 commit comments

Comments
 (0)