diff options
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/item/ItemGuide.java')
| -rwxr-xr-x[-rw-r--r--] | src/main/java/darkknight/jewelrycraft/item/ItemGuide.java | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/main/java/darkknight/jewelrycraft/item/ItemGuide.java b/src/main/java/darkknight/jewelrycraft/item/ItemGuide.java index ad496f2..6780714 100644..100755 --- a/src/main/java/darkknight/jewelrycraft/item/ItemGuide.java +++ b/src/main/java/darkknight/jewelrycraft/item/ItemGuide.java @@ -7,18 +7,18 @@ import net.minecraft.item.Item; import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
-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);
- player.addStat(AchievementsList.openGuide, 1);
- return stack;
- }
+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);
+ player.addStat(AchievementsList.openGuide, 1);
+ return stack;
+ }
}
\ No newline at end of file |
