From 420faddca46e70e3a70def168fb4e452ef193b0d Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Sat, 21 Feb 2015 21:31:16 +0000 Subject: Added just a butt ton of stuff, also thanks to pau101 for helping me with the Hand Pedestal animation :) --- java/darkknight/jewelrycraft/item/ItemGuide.java | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'java/darkknight/jewelrycraft/item/ItemGuide.java') diff --git a/java/darkknight/jewelrycraft/item/ItemGuide.java b/java/darkknight/jewelrycraft/item/ItemGuide.java index 62f645e..ed85dc4 100644 --- a/java/darkknight/jewelrycraft/item/ItemGuide.java +++ b/java/darkknight/jewelrycraft/item/ItemGuide.java @@ -8,19 +8,25 @@ import darkknight.jewelrycraft.JewelrycraftMod; public class ItemGuide extends Item { + + /** + * + */ public ItemGuide() { super(); } + /** + * @param stack + * @param world + * @param player + * @return + */ @Override public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player) { - if (world.isRemote) - { - player.openGui(JewelrycraftMod.instance, 1, player.worldObj, 0, 0, 0); - } - + 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