From 73ca377dc01f859dabd7b07738cb7aeb762272b1 Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Thu, 29 Jan 2015 18:28:37 +0000 Subject: Made lots of changes --- .../jewelrycraft/container/SlotRing.java | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 java/darkknight/jewelrycraft/container/SlotRing.java (limited to 'java/darkknight/jewelrycraft/container/SlotRing.java') diff --git a/java/darkknight/jewelrycraft/container/SlotRing.java b/java/darkknight/jewelrycraft/container/SlotRing.java new file mode 100644 index 0000000..3207301 --- /dev/null +++ b/java/darkknight/jewelrycraft/container/SlotRing.java @@ -0,0 +1,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; + } +} -- cgit v1.2.3