blob: a1b39379987fa20dff5ae9604e997d47cdc03d12 (
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.slot.SlotInvSlot;
import ihl.flexible_cable.IronWorkbenchInvSlot;
public class SlotInvSlotOutputInProgress extends SlotInvSlot {
public IronWorkbenchInvSlot invSlot;
public SlotInvSlotOutputInProgress(IronWorkbenchInvSlot invSlot1, int index1,
int xDisplayPosition1, int yDisplayPosition1) {
super(invSlot1, index1, xDisplayPosition1, yDisplayPosition1);
this.invSlot=invSlot1;
}
@Override
public boolean canTakeStack(EntityPlayer player)
{
return this.invSlot.getCanTakeStack();
}
}
|