Fix default block properties.

This commit is contained in:
Sebastian Hartte
2020-06-13 22:46:13 +02:00
parent d8660a53be
commit 2e41d44964
35 changed files with 134 additions and 120 deletions
@@ -52,7 +52,7 @@ public class BlockChest extends AEBaseTileBlock<TileChest>
public BlockChest()
{
super( Properties.create(Material.IRON) );
super( defaultProps(Material.IRON) );
this.setDefaultState( this.getDefaultState().with( SLOT_STATE, DriveSlotState.EMPTY ) );
}
@@ -43,7 +43,7 @@ public class BlockDrive extends AEBaseTileBlock<TileDrive>
public BlockDrive()
{
super( Properties.create(Material.IRON) );
super( defaultProps(Material.IRON) );
}
@Override
@@ -45,7 +45,7 @@ public class BlockIOPort extends AEBaseTileBlock<TileIOPort>
public BlockIOPort()
{
super( Properties.create(Material.IRON) );
super( defaultProps(Material.IRON) );
}
@Override