diff --git a/src/main/java/tconstruct/tools/inventory/InventoryCraftingStation.java b/src/main/java/tconstruct/tools/inventory/InventoryCraftingStation.java index fe19d842c2f..41ba5f7d14e 100644 --- a/src/main/java/tconstruct/tools/inventory/InventoryCraftingStation.java +++ b/src/main/java/tconstruct/tools/inventory/InventoryCraftingStation.java @@ -38,7 +38,7 @@ public int getSizeInventory () public ItemStack getStackInSlot (int slot) { // the 9 slots + 1 output slot that's not accessible, we therefore have to add 1 to the slot accessed - return slot > this.getSizeInventory() ? null : logic.getStackInSlot(slot+1); + return slot >= this.getSizeInventory() ? null : logic.getStackInSlot(slot+1); } @Override