We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53d7912 commit b13d880Copy full SHA for b13d880
1 file changed
src/main/java/com/dre/brewery/BDistiller.java
@@ -216,11 +216,13 @@ public void run() {
216
brewTime--; // count down.
217
if (brewTime > 1) {
218
stand.setBrewingTime((int) ((float) brewTime / ((float) runTime / (float) DISTILLTIME)) + 1);
219
+ stand.update();
220
return;
221
}
222
223
contents = getDistillContents(stand.getInventory()); // Get the contents again at the end just in case
224
stand.setBrewingTime(0);
225
226
if (!runDistill(stand.getInventory(), contents)) {
227
this.cancel();
228
trackedDistillers.remove(standBlock);
0 commit comments