Fixed breaking hardness for planks. Closes #545

This commit is contained in:
Adubbz 2015-12-16 11:22:31 +11:00
parent fb592e3aaf
commit ed5441c819
1 changed files with 1 additions and 0 deletions

View File

@ -76,6 +76,7 @@ public class BlockBOPPlanks extends Block implements IBOPBlock
{ {
super(Material.wood); super(Material.wood);
this.setDefaultState(this.blockState.getBaseState()); this.setDefaultState(this.blockState.getBaseState());
this.setHardness(2.0F).setResistance(5.0F).setStepSound(soundTypeWood);
this.setHarvestLevel("axe", 0); this.setHarvestLevel("axe", 0);
} }