From 8492772516898efed17f7384c63ef7d049fbd24a Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Tue, 4 Jul 2017 19:35:43 +1000 Subject: + Started adding recipes for the chemicals added earlier. + Added a framework for a Catalytic Reactor. $ Fixed FFPP recipes. $ Finally fixed #56. Textures from GT++ now have their own array to prevent GT Texture overlap issues. --- .../api/gui/basic/CONTAINER_PollutionCleaner.java | 23 ++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/gui/basic/CONTAINER_PollutionCleaner.java b/src/Java/gtPlusPlus/xmod/gregtech/api/gui/basic/CONTAINER_PollutionCleaner.java index 17a207a2d1..194f5b88b0 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/gui/basic/CONTAINER_PollutionCleaner.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/gui/basic/CONTAINER_PollutionCleaner.java @@ -37,13 +37,24 @@ public class CONTAINER_PollutionCleaner extends GT_Container_BasicTank { switch (((GT_MetaTileEntity_BasicMachine) mTileEntity.getMetaTileEntity()).mInputSlotCount) { case 0: break; - case 1: - addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 25)); + case 1: //Chemical Mixer + //Add 3 Item Slots + addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 7)); + addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 7)); + addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 7)); + //Add 6 Fluid Slots + addSlotToContainer(new GT_Slot_Render(mTileEntity, tStartIndex++, 17, 25)); + addSlotToContainer(new GT_Slot_Render(mTileEntity, tStartIndex++, 35, 25)); + addSlotToContainer(new GT_Slot_Render(mTileEntity, tStartIndex++, 53, 25)); + addSlotToContainer(new GT_Slot_Render(mTileEntity, tStartIndex++, 17, 43)); + addSlotToContainer(new GT_Slot_Render(mTileEntity, tStartIndex++, 35, 43)); + addSlotToContainer(new GT_Slot_Render(mTileEntity, tStartIndex++, 53, 43)); + break; - case 2: - //addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 25)); + case 2: //Pollution Scrubber + //Add 2 Item Slots addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 25)); - addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 107, 25)); + addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 107, 25)); break; case 3: addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 25)); @@ -175,7 +186,7 @@ public class CONTAINER_PollutionCleaner extends GT_Container_BasicTank { addSlotToContainer(new Slot(mTileEntity, 1, 80, 63)); addSlotToContainer(new Slot(mTileEntity, 3, 125, 63)); - addSlotToContainer(new GT_Slot_Render(mTileEntity, tStartIndex++, 53, 63)); + //addSlotToContainer(new GT_Slot_Render(mTileEntity, tStartIndex++, 53, 63)); } @Override -- cgit