Changed machine Materials

This commit is contained in:
Gig 2015-04-28 16:07:26 +01:00
parent 88c8771e8b
commit 1bfa830f13
6 changed files with 12 additions and 12 deletions

View file

@ -30,7 +30,7 @@ public class BlockCentrifuge extends BlockContainer {
public BlockCentrifuge() public BlockCentrifuge()
{ {
super(Material.piston); super(Material.rock);
setHardness(2F); setHardness(2F);
} }

View file

@ -22,7 +22,7 @@ public class BlockQuantumChest extends BlockContainer {
public BlockQuantumChest() public BlockQuantumChest()
{ {
super(Material.piston); super(Material.rock);
setHardness(2f); setHardness(2f);
} }

View file

@ -22,7 +22,7 @@ public class BlockQuantumTank extends BlockContainer {
public BlockQuantumTank() public BlockQuantumTank()
{ {
super(Material.piston); super(Material.rock);
setHardness(2f); setHardness(2f);
} }

View file

@ -31,7 +31,7 @@ public class BlockRollingMachine extends BlockContainer {
public BlockRollingMachine(Material material) public BlockRollingMachine(Material material)
{ {
super(material.piston); super(material.rock);
setCreativeTab(TechRebornCreativeTab.instance); setCreativeTab(TechRebornCreativeTab.instance);
setBlockName("techreborn.rollingmachine"); setBlockName("techreborn.rollingmachine");
setHardness(2f); setHardness(2f);

View file

@ -34,7 +34,7 @@ public class BlockThermalGenerator extends BlockContainer {
public BlockThermalGenerator() public BlockThermalGenerator()
{ {
super(Material.piston); super(Material.rock);
setHardness(2f); setHardness(2f);
} }

View file

@ -85,31 +85,31 @@ public class ModBlocks {
GameRegistry.registerBlock(centrifuge, "techreborn.centrifuge"); GameRegistry.registerBlock(centrifuge, "techreborn.centrifuge");
GameRegistry.registerTileEntity(TileCentrifuge.class, "TileCentrifuge"); GameRegistry.registerTileEntity(TileCentrifuge.class, "TileCentrifuge");
RollingMachine = new BlockRollingMachine(Material.piston); RollingMachine = new BlockRollingMachine(Material.rock);
GameRegistry.registerBlock(RollingMachine, "rollingmachine"); GameRegistry.registerBlock(RollingMachine, "rollingmachine");
GameRegistry.registerTileEntity(TileRollingMachine.class, "TileRollingMachine"); GameRegistry.registerTileEntity(TileRollingMachine.class, "TileRollingMachine");
BlastFurnace = new BlockBlastFurnace(Material.piston); BlastFurnace = new BlockBlastFurnace(Material.rock);
GameRegistry.registerBlock(BlastFurnace, "blastFurnace"); GameRegistry.registerBlock(BlastFurnace, "blastFurnace");
GameRegistry.registerTileEntity(TileBlastFurnace.class, "TileBlastFurnace"); GameRegistry.registerTileEntity(TileBlastFurnace.class, "TileBlastFurnace");
AlloySmelter = new BlockAlloySmelter(Material.piston); AlloySmelter = new BlockAlloySmelter(Material.rock);
GameRegistry.registerBlock(AlloySmelter, "alloySmelter"); GameRegistry.registerBlock(AlloySmelter, "alloySmelter");
GameRegistry.registerTileEntity(TileAlloySmelter.class, "TileAlloySmalter"); GameRegistry.registerTileEntity(TileAlloySmelter.class, "TileAlloySmalter");
Grinder = new BlockGrinder(Material.piston); Grinder = new BlockGrinder(Material.rock);
GameRegistry.registerBlock(Grinder, "grinder"); GameRegistry.registerBlock(Grinder, "grinder");
GameRegistry.registerTileEntity(TileGrinder.class, "TileGrinder"); GameRegistry.registerTileEntity(TileGrinder.class, "TileGrinder");
ImplosionCompressor = new BlockImplosionCompressor(Material.piston); ImplosionCompressor = new BlockImplosionCompressor(Material.rock);
GameRegistry.registerBlock(ImplosionCompressor, "implosioncompressor"); GameRegistry.registerBlock(ImplosionCompressor, "implosioncompressor");
GameRegistry.registerTileEntity(TileImplosionCompressor.class, "TileImplosionCompressor"); GameRegistry.registerTileEntity(TileImplosionCompressor.class, "TileImplosionCompressor");
MatterFabricator = new BlockMatterFabricator(Material.piston); MatterFabricator = new BlockMatterFabricator(Material.rock);
GameRegistry.registerBlock(MatterFabricator, "matterfabricator"); GameRegistry.registerBlock(MatterFabricator, "matterfabricator");
GameRegistry.registerTileEntity(TileMatterFabricator.class, "TileMatterFabricator"); GameRegistry.registerTileEntity(TileMatterFabricator.class, "TileMatterFabricator");
MachineCasing = new BlockMachineCasing(Material.piston); MachineCasing = new BlockMachineCasing(Material.rock);
GameRegistry.registerBlock(MachineCasing, ItemBlockMachineCasing.class, "machinecasing"); GameRegistry.registerBlock(MachineCasing, ItemBlockMachineCasing.class, "machinecasing");
GameRegistry.registerTileEntity(TileMachineCasing.class, "TileMachineCasing"); GameRegistry.registerTileEntity(TileMachineCasing.class, "TileMachineCasing");