blob: 3207301fb33a91028e7ff4546dd2c74978bdebff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package darkknight.jewelrycraft.container;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
import darkknight.jewelrycraft.item.ItemRing;
public class SlotRing extends Slot
{
public SlotRing(IInventory tile, int slotID, int x, int y)
{
super(tile, slotID, x, y);
}
@Override
public boolean isItemValid(ItemStack stack)
{
return stack.getItem() instanceof ItemRing;
}
@Override
public ItemStack decrStackSize(int amount)
{
return super.decrStackSize(amount);
}
@Override
public boolean canTakeStack(EntityPlayer player)
{
return true;
}
}
|