Fixed hardness and sounds for fences and fence gates

This commit is contained in:
Adubbz 2016-01-19 18:56:48 +11:00
parent ab98fad052
commit 7bee1e173f
2 changed files with 8 additions and 0 deletions

View file

@ -54,6 +54,10 @@ public class BlockBOPFence extends BlockFence implements IBOPBlock
this.wood = wood;
variantToBlock.put(wood, this);
this.setHardness(2.0F);
this.setResistance(5.0F);
this.setStepSound(soundTypeWood);
}
}

View file

@ -57,6 +57,10 @@ public class BlockBOPFenceGate extends BlockFenceGate implements IBOPBlock
this.wood = wood;
variantToBlock.put(wood, this);
this.setHardness(2.0F);
this.setResistance(5.0F);
this.setStepSound(soundTypeWood);
}
}