summaryrefslogtreecommitdiff
path: root/java/darkknight/jewelrycraft/container/SlotRingChest.java
blob: fe4cdd07469dd28b6dcbb0804e69eb11f36e9567 (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
34
35
36
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;

public class SlotRingChest extends Slot
{
    public boolean locked = false;
    
    public SlotRingChest(IInventory tile, int slotID, int x, int y, boolean locked)
    {
        super(tile, slotID, x, y);
        this.locked = locked;
    }
    
    @Override
    public boolean isItemValid(ItemStack stack)
    {
        return !locked;
    }
    
    @Override
    public ItemStack decrStackSize(int amount)
    {
        if (!locked) { return super.decrStackSize(amount); }
        return null;
    }
    
    @Override
    public boolean canTakeStack(EntityPlayer player)
    {
        return !locked;
    }
}