aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/api
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-07-04 19:35:43 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-07-04 19:35:43 +1000
commit8492772516898efed17f7384c63ef7d049fbd24a (patch)
tree452499e0be375fd5011d3e0d51a6bae82955482e /src/Java/gtPlusPlus/xmod/gregtech/api
parent17c7ba1ac71c3a9889c097c06ccdffeec44c557f (diff)
downloadGT5-Unofficial-8492772516898efed17f7384c63ef7d049fbd24a.tar.gz
GT5-Unofficial-8492772516898efed17f7384c63ef7d049fbd24a.tar.bz2
GT5-Unofficial-8492772516898efed17f7384c63ef7d049fbd24a.zip
+ 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.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/api/gui/basic/CONTAINER_PollutionCleaner.java23
1 files changed, 17 insertions, 6 deletions
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