summaryrefslogtreecommitdiff
path: root/common/darkknight/jewelrycraft/item/ItemGuide.java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2014-04-14 11:58:43 +0300
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2014-04-14 11:58:43 +0300
commit1a692ab45df3d88a6cc247cc9f4c0a41c7715264 (patch)
tree1854960d78be20ef09c9f098f5e2eb92837019dd /common/darkknight/jewelrycraft/item/ItemGuide.java
parentf965cf88704f1e5e674d98308cbe0f4451d7edeb (diff)
Updating to 1.7
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