diff options
author | repo-alt <wvk17@yandex.ru> | 2022-08-23 19:44:25 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 18:44:25 +0200 |
commit | 6bef2556c78cbbd6bde0f73a9849ab709590c8bd (patch) | |
tree | 40146cf238d68c281278e7bd0dd5929656479435 /src/main/java/gregtech/api/gui/GT_Container_2by2.java | |
parent | 43e283f28747967af991a7dfc36d70124c5be765 (diff) | |
download | GT5-Unofficial-6bef2556c78cbbd6bde0f73a9849ab709590c8bd.tar.gz GT5-Unofficial-6bef2556c78cbbd6bde0f73a9849ab709590c8bd.tar.bz2 GT5-Unofficial-6bef2556c78cbbd6bde0f73a9849ab709590c8bd.zip |
Refactored built-in integrated circuit support (#1284)
* Refactored built-in integrated circuit support
Added built-in integrated circuit to input buses
* fix spacing
Diffstat (limited to 'src/main/java/gregtech/api/gui/GT_Container_2by2.java')
-rw-r--r-- | src/main/java/gregtech/api/gui/GT_Container_2by2.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/gui/GT_Container_2by2.java b/src/main/java/gregtech/api/gui/GT_Container_2by2.java index 089c20e335..92d50b3aae 100644 --- a/src/main/java/gregtech/api/gui/GT_Container_2by2.java +++ b/src/main/java/gregtech/api/gui/GT_Container_2by2.java @@ -16,6 +16,7 @@ public class GT_Container_2by2 extends GT_ContainerMetaTile_Machine { addSlotToContainer(new Slot(mTileEntity, 1, 89, 26)); addSlotToContainer(new Slot(mTileEntity, 2, 71, 44)); addSlotToContainer(new Slot(mTileEntity, 3, 89, 44)); + super.addSlots(aInventoryPlayer); } @Override |