Fix for the ticktime

This commit is contained in:
Gig 2015-05-11 22:08:32 +01:00
parent f3d346f6d1
commit 1bddb1747f
2 changed files with 3 additions and 0 deletions

View file

@ -138,6 +138,7 @@ public class RecipeCrafter {
} else if (currentTickTime < currentRecipe.tickTime()) {
if (energy.useEnergy(currentRecipe.euPerTick())) {
currentTickTime++;
parentTile.syncWithAll();
}
}
}

View file

@ -56,6 +56,8 @@ public class GuiAlloySmelter extends GuiContainer {
I18n.format("container.inventory", new Object[0]), 8,
this.ySize - 96 + 2, 4210752);
System.out.print(alloysmelter.crafter.currentTickTime);
}
}