From 1a692ab45df3d88a6cc247cc9f4c0a41c7715264 Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Mon, 14 Apr 2014 11:58:43 +0300 Subject: Updating to 1.7 --- common/darkknight/jewelrycraft/item/ItemGuide.java | 27 ---------------------- 1 file changed, 27 deletions(-) delete mode 100644 common/darkknight/jewelrycraft/item/ItemGuide.java (limited to 'common/darkknight/jewelrycraft/item/ItemGuide.java') 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 -- cgit v1.2.3