diff options
Diffstat (limited to 'ihl/processing/invslots/SlotRedstoneConverterCableInvSlot.java')
| -rw-r--r-- | ihl/processing/invslots/SlotRedstoneConverterCableInvSlot.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ihl/processing/invslots/SlotRedstoneConverterCableInvSlot.java b/ihl/processing/invslots/SlotRedstoneConverterCableInvSlot.java new file mode 100644 index 0000000..461c3cc --- /dev/null +++ b/ihl/processing/invslots/SlotRedstoneConverterCableInvSlot.java @@ -0,0 +1,23 @@ +package ihl.processing.invslots;
+
+import net.minecraft.entity.player.EntityPlayer;
+import ic2.core.block.invslot.InvSlot;
+import ic2.core.slot.SlotInvSlot;
+
+public class SlotRedstoneConverterCableInvSlot extends SlotInvSlot {
+
+ public InvSlot invSlot;
+
+ public SlotRedstoneConverterCableInvSlot(InvSlot invSlot1, int index1,
+ int xDisplayPosition1, int yDisplayPosition1) {
+ super(invSlot1, index1, xDisplayPosition1, yDisplayPosition1);
+ this.invSlot=invSlot1;
+ }
+
+ @Override
+ public boolean canTakeStack(EntityPlayer player)
+ {
+ return false;
+ }
+
+}
|
