summaryrefslogtreecommitdiff
path: root/main/java/ihl/processing/chemistry/ChemicalReactorContainer.java
diff options
context:
space:
mode:
authorFoghrye4 <foghrye4@gmail.com>2017-08-10 18:52:45 +0300
committerFoghrye4 <foghrye4@gmail.com>2017-08-10 18:52:45 +0300
commit0427ab89f1753a44b30cbc35ce021cbbdc845109 (patch)
treeabe418ff5ec174e712fe8dedd434548a945b15a3 /main/java/ihl/processing/chemistry/ChemicalReactorContainer.java
parent877312184c472d9845e5ef1008bc538f4634059f (diff)
fix missing source folder
Diffstat (limited to 'main/java/ihl/processing/chemistry/ChemicalReactorContainer.java')
-rw-r--r--main/java/ihl/processing/chemistry/ChemicalReactorContainer.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/main/java/ihl/processing/chemistry/ChemicalReactorContainer.java b/main/java/ihl/processing/chemistry/ChemicalReactorContainer.java
deleted file mode 100644
index 16b6baa..0000000
--- a/main/java/ihl/processing/chemistry/ChemicalReactorContainer.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package ihl.processing.chemistry;
-
-import java.util.List;
-
-import ic2.core.IC2;
-import ic2.core.slot.SlotInvSlot;
-import net.minecraft.entity.player.EntityPlayer;
-import net.minecraftforge.fluids.FluidStack;
-
-public class ChemicalReactorContainer extends BasicElectricMotorContainer<ChemicalReactorTileEntity> {
-
- protected ChemicalReactorTileEntity tileEntity;
- public List<FluidStack> fluidTankFluidList;
- public int fluidListHash = -1;
-
- public ChemicalReactorContainer(EntityPlayer entityPlayer, ChemicalReactorTileEntity tileEntity1) {
- super(entityPlayer, tileEntity1);
- this.tileEntity = tileEntity1;
- fluidTankFluidList = tileEntity.getFluidTank().getFluidList();
- this.addSlotToContainer(new SlotInvSlot(tileEntity1.fillInputSlot, 0, 60, 51));
- this.addSlotToContainer(new SlotInvSlot(tileEntity1.drainInputSlot, 0, 60, 15));
- this.addSlotToContainer(new SlotInvSlot(tileEntity1.emptyFluidItemsSlot, 0, 60, 33));
- this.addSlotToContainer(new SlotInvSlot(tileEntity1.input, 0, 122 - 18, 15));
- this.addSlotToContainer(new SlotInvSlot(tileEntity1.input, 1, 122, 15));
- this.addSlotToContainer(new SlotInvSlot(tileEntity1.outputSlot, 0, 122 - 18, 51));
- this.addSlotToContainer(new SlotInvSlot(tileEntity1.outputSlot, 1, 122, 51));
- }
-
- @Override
- public void detectAndSendChanges() {
- super.detectAndSendChanges();
- if (this.fluidListHash != fluidTankFluidList.hashCode()) {
- IC2.network.get().sendContainerField(this, "fluidTankFluidList");
- this.fluidListHash = fluidTankFluidList.hashCode();
- }
- }
-}