2014-04-08 02:43:57 +02:00
|
|
|
package appeng.container.slot;
|
|
|
|
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
2014-04-10 06:51:08 +02:00
|
|
|
public class SlotPatternTerm extends OptionalSlotFake
|
2014-04-08 02:43:57 +02:00
|
|
|
{
|
|
|
|
|
2014-04-10 06:51:08 +02:00
|
|
|
public SlotPatternTerm(IInventory inv, IOptionalSlotHost h, int idx, int x, int y, int grpnum) {
|
|
|
|
super( inv, h, idx, x, y, 0, 0, grpnum );
|
2014-04-08 02:43:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canTakeStack(EntityPlayer par1EntityPlayer)
|
|
|
|
{
|
2014-04-10 06:51:08 +02:00
|
|
|
return super.canTakeStack( par1EntityPlayer );
|
2014-04-08 02:43:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPickupFromSlot(EntityPlayer p, ItemStack is)
|
|
|
|
{
|
2014-04-10 06:51:08 +02:00
|
|
|
super.onPickupFromSlot( p, is );
|
2014-04-08 02:43:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|