Make Cauldron Cooking start at minute 0

Fixes #256
This commit is contained in:
Sn0wStorm
2020-04-02 16:23:19 +02:00
parent 11c7fa1378
commit 86f82f0a14
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -289,7 +289,7 @@ public class BData {
Block worldBlock = world.getBlockAt(P.p.parseInt(splitted[0]), P.p.parseInt(splitted[1]), P.p.parseInt(splitted[2]));
BIngredients ingredients = loadCauldronIng(section, cauldron + ".ingredients");
int state = section.getInt(cauldron + ".state", 1);
int state = section.getInt(cauldron + ".state", 0);
new BCauldron(worldBlock, ingredients, state);
} else {