Added magicrnergyabsorber
This commit is contained in:
parent
7e8ab75b3e
commit
afc750993c
5 changed files with 72 additions and 5 deletions
|
@ -16,6 +16,7 @@ import techreborn.blocks.BlockHighlyAdvancedMachine;
|
|||
import techreborn.blocks.BlockImplosionCompressor;
|
||||
import techreborn.blocks.BlockIndustrialElectrolyzer;
|
||||
import techreborn.blocks.BlockMachineCasing;
|
||||
import techreborn.blocks.BlockMagicEnergyAbsorber;
|
||||
import techreborn.blocks.BlockMagicEnergyConverter;
|
||||
import techreborn.blocks.BlockMatterFabricator;
|
||||
import techreborn.blocks.BlockOre;
|
||||
|
@ -65,6 +66,7 @@ public class ModBlocks {
|
|||
public static Block AssemblyMachine;
|
||||
public static Block DieselGenerator;
|
||||
public static Block IndustrialElectrolyzer;
|
||||
public static Block MagicalAbsorber;
|
||||
|
||||
public static Block ore;
|
||||
public static Block storage;
|
||||
|
@ -157,6 +159,9 @@ public class ModBlocks {
|
|||
|
||||
IndustrialElectrolyzer = new BlockIndustrialElectrolyzer(Material.rock);
|
||||
GameRegistry.registerBlock(IndustrialElectrolyzer, "industrialelectrolyzer");
|
||||
|
||||
MagicalAbsorber = new BlockMagicEnergyAbsorber(Material.rock);
|
||||
GameRegistry.registerBlock(MagicalAbsorber, "magicrnergyabsorber");
|
||||
|
||||
registerOreDict();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue