From 06f62473f0622efe6decc32b70516a7c5d3d3572 Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Wed, 17 Sep 2014 19:10:05 +0300 Subject: 1.7.10 --- .../jewelrycraft/container/SlotRingChest.java | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 src/main/java/darkknight/jewelrycraft/container/SlotRingChest.java (limited to 'src/main/java/darkknight/jewelrycraft/container/SlotRingChest.java') diff --git a/src/main/java/darkknight/jewelrycraft/container/SlotRingChest.java b/src/main/java/darkknight/jewelrycraft/container/SlotRingChest.java deleted file mode 100644 index 576dee7..0000000 --- a/src/main/java/darkknight/jewelrycraft/container/SlotRingChest.java +++ /dev/null @@ -1,39 +0,0 @@ -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; - } -} -- cgit v1.2.3