diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2019-08-22 20:01:40 -0400 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2019-08-22 20:01:40 -0400 |
| commit | 20bef6e26d948698398bd16aeab8c9e6b89110e4 (patch) | |
| tree | 8a21e17f78b330435f4ce2d4355d72b773230aa7 /src/main/java/darkknight/jewelrycraft/item/ItemGuide.java | |
| parent | 26fb28edd1ebb6390f8803fed3876d222cb8fdba (diff) | |
Format/import cleanup
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/item/ItemGuide.java')
| -rwxr-xr-x | src/main/java/darkknight/jewelrycraft/item/ItemGuide.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main/java/darkknight/jewelrycraft/item/ItemGuide.java b/src/main/java/darkknight/jewelrycraft/item/ItemGuide.java index 83f8531..04cb5c1 100755 --- a/src/main/java/darkknight/jewelrycraft/item/ItemGuide.java +++ b/src/main/java/darkknight/jewelrycraft/item/ItemGuide.java @@ -13,11 +13,9 @@ public class ItemGuide extends Item { }
@Override
- public ItemStack onItemRightClick(ItemStack stack, World world,
- EntityPlayer player) {
+ public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player) {
if (world.isRemote)
- player.openGui(JewelrycraftMod.instance, 1,
- player.worldObj, 0, 0, 0);
+ player.openGui(JewelrycraftMod.instance, 1, player.worldObj, 0, 0, 0);
player.addStat(AchievementsList.openGuide, 1);
return stack;
}
|
