diff --git a/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPAxe.java b/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPAxe.java index 2eb524fc1..b41880cfa 100644 --- a/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPAxe.java +++ b/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPAxe.java @@ -2,9 +2,10 @@ package tdwp_ftw.biomesop.items; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.item.EnumToolMaterial; +import net.minecraft.item.ItemAxe; import net.minecraft.item.ItemSword; -public class ItemBOPAxe extends ItemSword +public class ItemBOPAxe extends ItemAxe { public int TextureID = 0; diff --git a/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPHoe.java b/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPHoe.java index 69f6c1940..e0d8655b4 100644 --- a/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPHoe.java +++ b/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPHoe.java @@ -2,9 +2,10 @@ package tdwp_ftw.biomesop.items; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.item.EnumToolMaterial; +import net.minecraft.item.ItemHoe; import net.minecraft.item.ItemSword; -public class ItemBOPHoe extends ItemSword +public class ItemBOPHoe extends ItemHoe { public int TextureID = 0; diff --git a/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPPickaxe.java b/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPPickaxe.java index 3202d6e42..ca00102eb 100644 --- a/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPPickaxe.java +++ b/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPPickaxe.java @@ -2,9 +2,10 @@ package tdwp_ftw.biomesop.items; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.item.EnumToolMaterial; +import net.minecraft.item.ItemPickaxe; import net.minecraft.item.ItemSword; -public class ItemBOPPickaxe extends ItemSword +public class ItemBOPPickaxe extends ItemPickaxe { public int TextureID = 0; diff --git a/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPSpade.java b/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPSpade.java index 47146ac86..4f2a26122 100644 --- a/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPSpade.java +++ b/src/minecraft/tdwp_ftw/biomesop/items/ItemBOPSpade.java @@ -2,9 +2,10 @@ package tdwp_ftw.biomesop.items; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.item.EnumToolMaterial; +import net.minecraft.item.ItemSpade; import net.minecraft.item.ItemSword; -public class ItemBOPSpade extends ItemSword +public class ItemBOPSpade extends ItemSpade { public int TextureID = 0;