diff options
| author | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2014-09-17 19:10:05 +0300 |
|---|---|---|
| committer | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2014-09-17 19:10:05 +0300 |
| commit | 06f62473f0622efe6decc32b70516a7c5d3d3572 (patch) | |
| tree | ebf54c96117f9917cd93740a89763c26abde06af /java/darkknight/jewelrycraft/container/SlotRingChest.java | |
| parent | 852cfd0e13631320624d528213ec8c80cffe8743 (diff) | |
1.7.10
Diffstat (limited to 'java/darkknight/jewelrycraft/container/SlotRingChest.java')
| -rw-r--r-- | java/darkknight/jewelrycraft/container/SlotRingChest.java | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/java/darkknight/jewelrycraft/container/SlotRingChest.java b/java/darkknight/jewelrycraft/container/SlotRingChest.java new file mode 100644 index 0000000..fe4cdd0 --- /dev/null +++ b/java/darkknight/jewelrycraft/container/SlotRingChest.java @@ -0,0 +1,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; + } +} |
