summaryrefslogtreecommitdiff
path: root/common/darkknight/jewelrycraft/item/ItemGuide.java
diff options
context:
space:
mode:
Diffstat (limited to 'common/darkknight/jewelrycraft/item/ItemGuide.java')
-rw-r--r--common/darkknight/jewelrycraft/item/ItemGuide.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/common/darkknight/jewelrycraft/item/ItemGuide.java b/common/darkknight/jewelrycraft/item/ItemGuide.java
deleted file mode 100644
index 383ef7b..0000000
--- a/common/darkknight/jewelrycraft/item/ItemGuide.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package darkknight.jewelrycraft.item;
-
-import net.minecraft.entity.player.EntityPlayer;
-import net.minecraft.item.Item;
-import net.minecraft.item.ItemStack;
-import net.minecraft.world.World;
-import darkknight.jewelrycraft.JewelrycraftMod;
-
-public class ItemGuide extends Item
-{
-
- public ItemGuide(int id)
- {
- super(id);
- }
-
- @Override
- public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player)
- {
- if (world.isRemote)
- {
- player.openGui(JewelrycraftMod.instance, 1, player.worldObj, 0, 0, 0);
- }
-
- return stack;
- }
-} \ No newline at end of file