diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-07-11 23:25:09 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-07-11 23:25:09 +1000 |
commit | df714a834ebc45f913d44f6882ae030aaafb1187 (patch) | |
tree | ae85381caf9cd14f295a2c649ac95fe5cd168ba5 /src/Java/gtPlusPlus/core/container | |
parent | 3a78abc5109025c13032d0e6e60e820865778a6f (diff) | |
download | GT5-Unofficial-df714a834ebc45f913d44f6882ae030aaafb1187.tar.gz GT5-Unofficial-df714a834ebc45f913d44f6882ae030aaafb1187.tar.bz2 GT5-Unofficial-df714a834ebc45f913d44f6882ae030aaafb1187.zip |
- Disabled the crafting grid in the Workbench. (Dupe fix)
% More work on trying to empty this god damn recipe map.
Diffstat (limited to 'src/Java/gtPlusPlus/core/container')
-rw-r--r-- | src/Java/gtPlusPlus/core/container/Container_Workbench.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Java/gtPlusPlus/core/container/Container_Workbench.java b/src/Java/gtPlusPlus/core/container/Container_Workbench.java index fd16aa4e67..59000f1b59 100644 --- a/src/Java/gtPlusPlus/core/container/Container_Workbench.java +++ b/src/Java/gtPlusPlus/core/container/Container_Workbench.java @@ -23,7 +23,7 @@ public class Container_Workbench extends Container { public final InventoryWorkbenchChest inventoryChest; public final InventoryWorkbenchTools inventoryTool; public final InventoryWorkbenchHoloSlots inventoryHolo; - public final InventoryWorkbenchHoloCrafting inventoryCrafting; + //public final InventoryWorkbenchHoloCrafting inventoryCrafting; private final World worldObj; private final int posX; @@ -84,7 +84,7 @@ public class Container_Workbench extends Container { this.inventoryChest = tile.inventoryChest; this.inventoryTool = tile.inventoryTool; this.inventoryHolo = tile.inventoryHolo; - this.inventoryCrafting = tile.inventoryCrafting; + //this.inventoryCrafting = tile.inventoryCrafting; int var6; int var7; @@ -262,7 +262,7 @@ public class Container_Workbench extends Container { private void updateCraftingMatrix() { for (int i = 0; i < this.craftMatrix.getSizeInventory(); i++) { - this.craftMatrix.setInventorySlotContents(i, this.tile_entity.inventoryCrafting.getStackInSlot(i)); + //this.craftMatrix.setInventorySlotContents(i, this.tile_entity.inventoryCrafting.getStackInSlot(i)); } } @@ -280,7 +280,7 @@ public class Container_Workbench extends Container { private void saveCraftingMatrix() { for (int i = 0; i < this.craftMatrix.getSizeInventory(); i++) { - this.tile_entity.inventoryCrafting.setInventorySlotContents(i, this.craftMatrix.getStackInSlot(i)); + //this.tile_entity.inventoryCrafting.setInventorySlotContents(i, this.craftMatrix.getStackInSlot(i)); } } |