Changed machine Materials
This commit is contained in:
parent
88c8771e8b
commit
1bfa830f13
6 changed files with 12 additions and 12 deletions
|
@ -30,7 +30,7 @@ public class BlockCentrifuge extends BlockContainer {
|
|||
|
||||
public BlockCentrifuge()
|
||||
{
|
||||
super(Material.piston);
|
||||
super(Material.rock);
|
||||
setHardness(2F);
|
||||
}
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ public class BlockQuantumChest extends BlockContainer {
|
|||
|
||||
public BlockQuantumChest()
|
||||
{
|
||||
super(Material.piston);
|
||||
super(Material.rock);
|
||||
setHardness(2f);
|
||||
}
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ public class BlockQuantumTank extends BlockContainer {
|
|||
|
||||
public BlockQuantumTank()
|
||||
{
|
||||
super(Material.piston);
|
||||
super(Material.rock);
|
||||
setHardness(2f);
|
||||
}
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public class BlockRollingMachine extends BlockContainer {
|
|||
|
||||
public BlockRollingMachine(Material material)
|
||||
{
|
||||
super(material.piston);
|
||||
super(material.rock);
|
||||
setCreativeTab(TechRebornCreativeTab.instance);
|
||||
setBlockName("techreborn.rollingmachine");
|
||||
setHardness(2f);
|
||||
|
|
|
@ -34,7 +34,7 @@ public class BlockThermalGenerator extends BlockContainer {
|
|||
|
||||
public BlockThermalGenerator()
|
||||
{
|
||||
super(Material.piston);
|
||||
super(Material.rock);
|
||||
setHardness(2f);
|
||||
}
|
||||
|
||||
|
|
|
@ -85,31 +85,31 @@ public class ModBlocks {
|
|||
GameRegistry.registerBlock(centrifuge, "techreborn.centrifuge");
|
||||
GameRegistry.registerTileEntity(TileCentrifuge.class, "TileCentrifuge");
|
||||
|
||||
RollingMachine = new BlockRollingMachine(Material.piston);
|
||||
RollingMachine = new BlockRollingMachine(Material.rock);
|
||||
GameRegistry.registerBlock(RollingMachine, "rollingmachine");
|
||||
GameRegistry.registerTileEntity(TileRollingMachine.class, "TileRollingMachine");
|
||||
|
||||
BlastFurnace = new BlockBlastFurnace(Material.piston);
|
||||
BlastFurnace = new BlockBlastFurnace(Material.rock);
|
||||
GameRegistry.registerBlock(BlastFurnace, "blastFurnace");
|
||||
GameRegistry.registerTileEntity(TileBlastFurnace.class, "TileBlastFurnace");
|
||||
|
||||
AlloySmelter = new BlockAlloySmelter(Material.piston);
|
||||
AlloySmelter = new BlockAlloySmelter(Material.rock);
|
||||
GameRegistry.registerBlock(AlloySmelter, "alloySmelter");
|
||||
GameRegistry.registerTileEntity(TileAlloySmelter.class, "TileAlloySmalter");
|
||||
|
||||
Grinder = new BlockGrinder(Material.piston);
|
||||
Grinder = new BlockGrinder(Material.rock);
|
||||
GameRegistry.registerBlock(Grinder, "grinder");
|
||||
GameRegistry.registerTileEntity(TileGrinder.class, "TileGrinder");
|
||||
|
||||
ImplosionCompressor = new BlockImplosionCompressor(Material.piston);
|
||||
ImplosionCompressor = new BlockImplosionCompressor(Material.rock);
|
||||
GameRegistry.registerBlock(ImplosionCompressor, "implosioncompressor");
|
||||
GameRegistry.registerTileEntity(TileImplosionCompressor.class, "TileImplosionCompressor");
|
||||
|
||||
MatterFabricator = new BlockMatterFabricator(Material.piston);
|
||||
MatterFabricator = new BlockMatterFabricator(Material.rock);
|
||||
GameRegistry.registerBlock(MatterFabricator, "matterfabricator");
|
||||
GameRegistry.registerTileEntity(TileMatterFabricator.class, "TileMatterFabricator");
|
||||
|
||||
MachineCasing = new BlockMachineCasing(Material.piston);
|
||||
MachineCasing = new BlockMachineCasing(Material.rock);
|
||||
GameRegistry.registerBlock(MachineCasing, ItemBlockMachineCasing.class, "machinecasing");
|
||||
GameRegistry.registerTileEntity(TileMachineCasing.class, "TileMachineCasing");
|
||||
|
||||
|
|
Loading…
Reference in a new issue