summaryrefslogtreecommitdiff
path: root/ihl/processing/metallurgy/LatheContainer.java
diff options
context:
space:
mode:
Diffstat (limited to 'ihl/processing/metallurgy/LatheContainer.java')
-rw-r--r--ihl/processing/metallurgy/LatheContainer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/ihl/processing/metallurgy/LatheContainer.java b/ihl/processing/metallurgy/LatheContainer.java
index c863f7b..5e79a2a 100644
--- a/ihl/processing/metallurgy/LatheContainer.java
+++ b/ihl/processing/metallurgy/LatheContainer.java
@@ -6,7 +6,7 @@ import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.ICrafting;
import net.minecraft.inventory.Slot;
-public class LatheContainer extends ContainerBase {
+public class LatheContainer extends ContainerBase<LathePart1TileEntity> {
public LathePart1TileEntity tileEntity;
public int lastProgress = -1;
@@ -30,7 +30,7 @@ public class LatheContainer extends ContainerBase {
{
this.addSlotToContainer(new Slot(entityPlayer.inventory, col, 8 + col * 18, height + -24));
}
- this.addSlotToContainer(new SlotInvSlot(lathePart1TileEntity.engine,0, 22, 55));
+ this.addSlotToContainer(new SlotInvSlot(lathePart1TileEntity.dischargeSlot,0, 22, 55));
}
@Override