Attempting to change break speed

This commit is contained in:
Adubbz 2013-12-28 12:56:49 +11:00
parent 690ea1504a
commit 8499d70b43
4 changed files with 8 additions and 1 deletions

View File

@ -31,6 +31,7 @@ public class BlockMud extends Block
//TODO: this.setHardness
this.func_149711_c(0.6F);
this.setHarvestLevel("shovel", 0);
//TODO setStepSound(Block.soundSandFootstep)
this.func_149672_a(Block.field_149776_m);

View File

@ -17,6 +17,8 @@ public class ItemBOPAxe extends ItemAxe
this.textureID = texture;
this.setHarvestLevel("axe", 4);
this.setCreativeTab(BiomesOPlenty.tabBiomesOPlenty);
}

View File

@ -16,6 +16,8 @@ public class ItemBOPPickaxe extends ItemPickaxe
this.textureID = texture;
this.setHarvestLevel("pickaxe", 4);
this.setCreativeTab(BiomesOPlenty.tabBiomesOPlenty);
}

View File

@ -16,7 +16,9 @@ public class ItemBOPSpade extends ItemSpade
this.textureID = texture;
setCreativeTab(BiomesOPlenty.tabBiomesOPlenty);
this.setHarvestLevel("shovel", 4);
this.setCreativeTab(BiomesOPlenty.tabBiomesOPlenty);
}
@Override