blob: 461c3ccaa7efe10ff5f1372119d48ed781935f7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
}
}
|