diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-01-10 16:16:47 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-01-10 16:16:47 +0000 |
commit | 5290f9e58b8260f30a1578d02a4b5e70f94e9204 (patch) | |
tree | c531fc3c6f5b32f4bb657e6ef61e55233a23a05b /src/Java/gtPlusPlus/xmod/gregtech/api/gui | |
parent | b5cd08ed95eeeb11611ca065c63c3fba574790fe (diff) | |
download | GT5-Unofficial-5290f9e58b8260f30a1578d02a4b5e70f94e9204.tar.gz GT5-Unofficial-5290f9e58b8260f30a1578d02a4b5e70f94e9204.tar.bz2 GT5-Unofficial-5290f9e58b8260f30a1578d02a4b5e70f94e9204.zip |
+ 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.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/gui')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_MatterFab.java | 4 |
1 files changed, 2 insertions, 2 deletions
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 |