summaryrefslogtreecommitdiff
path: root/eclipse/Jewelrycraft/common/darkknight/jewelrycraft/item/ItemGuide.java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2014-04-15 23:05:32 +0300
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2014-04-15 23:05:32 +0300
commit256653501365eb4f95d3dddbcdfdc23a2a9594d5 (patch)
tree682c8ff1f943936d173299acfa42e77462eb297c /eclipse/Jewelrycraft/common/darkknight/jewelrycraft/item/ItemGuide.java
parent4b8b13b34d7a8fd0ee7c7b13f11be9c2bf3b5d18 (diff)
Moved source files
Diffstat (limited to 'eclipse/Jewelrycraft/common/darkknight/jewelrycraft/item/ItemGuide.java')
-rw-r--r--eclipse/Jewelrycraft/common/darkknight/jewelrycraft/item/ItemGuide.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/eclipse/Jewelrycraft/common/darkknight/jewelrycraft/item/ItemGuide.java b/eclipse/Jewelrycraft/common/darkknight/jewelrycraft/item/ItemGuide.java
deleted file mode 100644
index b4d300d..0000000
--- a/eclipse/Jewelrycraft/common/darkknight/jewelrycraft/item/ItemGuide.java
+++ /dev/null
@@ -1,26 +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()
- {
- super();
- }
-
- @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