summaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/darkknight/jewelrycraft/item/ItemGuide.java53
1 files changed, 1 insertions, 52 deletions
diff --git a/src/main/java/darkknight/jewelrycraft/item/ItemGuide.java b/src/main/java/darkknight/jewelrycraft/item/ItemGuide.java
index cf773c8..9c2f627 100644
--- a/src/main/java/darkknight/jewelrycraft/item/ItemGuide.java
+++ b/src/main/java/darkknight/jewelrycraft/item/ItemGuide.java
@@ -12,7 +12,7 @@ import net.minecraftforge.event.entity.player.PlayerEvent.Clone;
import darkknight.jewelrycraft.JewelrycraftMod;
import darkknight.jewelrycraft.api.IJewelryItem;
-public class ItemGuide extends Item implements IJewelryItem
+public class ItemGuide extends Item
{
public ItemGuide()
{
@@ -25,55 +25,4 @@ public class ItemGuide extends Item implements IJewelryItem
if (world.isRemote) player.openGui(JewelrycraftMod.instance, 1, player.worldObj, 0, 0, 0);
return stack;
}
-
- /**
- * @return
- */
- @Override
- public int type()
- {
- return 0;
- }
-
- /**
- * @param player
- */
- @Override
- public void onWearAction(EntityPlayer player)
- {
- player.addPotionEffect(new PotionEffect(Potion.fireResistance.id, 20, 0));
- }
-
- /**
- * @param player
- * @param source
- * @param amount
- */
- @Override
- public void onPlayerAttackedAction(EntityPlayer player, DamageSource source, float amount)
- {}
-
- /**
- * @param player
- * @param entity
- * @param amount
- */
- @Override
- public void onEntityAttackedByPlayer(EntityPlayer player, EntityLivingBase entity, float amount)
- {}
-
- /**
- * @param player
- * @param source
- */
- @Override
- public void onPlayerDeadAction(EntityPlayer player, DamageSource source)
- {}
-
- /**
- * @param event
- */
- @Override
- public void onPlayerRespawnAction(Clone event)
- {}
} \ No newline at end of file