From 5290f9e58b8260f30a1578d02a4b5e70f94e9204 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Thu, 10 Jan 2019 16:16:47 +0000 Subject: + Added some new Textures, also found some that existed but never got loaded. % Adjusted Casings required for the Matter Fabricator. $ Fixed Large Assembler not requiring power. $ Fixed the Matter Fabricator, it's now much simpler to use. $ Fixed bug pertaining to the extra slot in the Matter Fabricators GUI. --- src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_MatterFab.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/gui') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_MatterFab.java b/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_MatterFab.java index a3f48ffd30..808eb90728 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_MatterFab.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_MatterFab.java @@ -27,12 +27,12 @@ public class CONTAINER_MatterFab extends GT_ContainerMetaTile_Machine { @Override public void addSlots(InventoryPlayer aInventoryPlayer) { - addSlotToContainer(new SlotNoInput(mTileEntity, 1, 152, 5)); + //addSlotToContainer(new SlotNoInput(mTileEntity, 1, 152, 5)); } @Override public int getSlotCount() { - return 1; + return 0; } @Override -- cgit