diff options
| author | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2015-02-21 21:31:16 +0000 |
|---|---|---|
| committer | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2015-02-21 21:31:16 +0000 |
| commit | 420faddca46e70e3a70def168fb4e452ef193b0d (patch) | |
| tree | 247e334012e4bf9e4fa6d42718bf601ce6bd42d9 /java/darkknight/jewelrycraft/item/ItemGuide.java | |
| parent | 3f4c717de5ebc9b942d65ae45ac87c43bdf8a31b (diff) | |
Added just a butt ton of stuff, also thanks to pau101 for helping me with the Hand Pedestal animation :)
Diffstat (limited to 'java/darkknight/jewelrycraft/item/ItemGuide.java')
| -rw-r--r-- | java/darkknight/jewelrycraft/item/ItemGuide.java | 16 |
1 files changed, 11 insertions, 5 deletions
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 |
