blob: b1f553cb05df4ac46db60f8dd30c54531558f0c5 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
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;
/**
* @param tile
* @param slotID
* @param x
* @param y
* @param locked
*/
public SlotRingChest(IInventory tile, int slotID, int x, int y, boolean locked)
{
super(tile, slotID, x, y);
this.locked = locked;
}
/**
* @param stack
* @return
*/
@Override
public boolean isItemValid(ItemStack stack)
{
return !locked;
}
/**
* @param amount
* @return
*/
@Override
public ItemStack decrStackSize(int amount)
{
if (!locked) return super.decrStackSize(amount);
return null;
}
/**
* @param player
* @return
*/
@Override
public boolean canTakeStack(EntityPlayer player)
{
return !locked;
}
}
|