This commit is contained in:
modmuss50 2017-07-03 19:48:21 +01:00
parent d92cbe67e1
commit 1e890ab79e
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA

View file

@ -70,6 +70,8 @@ public class BlockCable extends BlockContainer {
public BlockCable() { public BlockCable() {
super(Material.ROCK); super(Material.ROCK);
setHardness(1F);
setResistance(8F);
setCreativeTab(TechRebornCreativeTab.instance); setCreativeTab(TechRebornCreativeTab.instance);
setDefaultState(getDefaultState().withProperty(EAST, false).withProperty(WEST, false).withProperty(NORTH, false).withProperty(SOUTH, false).withProperty(UP, false).withProperty(DOWN, false).withProperty(TYPE, EnumCableType.COPPER)); setDefaultState(getDefaultState().withProperty(EAST, false).withProperty(WEST, false).withProperty(NORTH, false).withProperty(SOUTH, false).withProperty(UP, false).withProperty(DOWN, false).withProperty(TYPE, EnumCableType.COPPER));
} }