Fixed crafting a complex item causes the process to flow off the Crafting Monitor's GUI, fixes #354

This commit is contained in:
Raoul Van den Berge
2016-09-17 17:37:30 +02:00
parent 99870fbb0b
commit 80cf5a08b0
2 changed files with 4 additions and 1 deletions

View File

@@ -104,7 +104,7 @@ public class GuiCraftingMonitor extends GuiBase {
itemSelectedY = y;
}
x += task.getDepth() * 16;
x += 16F / (float) task.getDepth();
drawItem(x + 2, y + 1, task.getOutput());