Added aesu

This commit is contained in:
Gig 2015-05-04 19:01:03 +01:00
parent 7257da06e9
commit 6ad1c8bdea
2 changed files with 67 additions and 0 deletions

View file

@ -4,6 +4,7 @@ import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.item.ItemStack;
import net.minecraftforge.oredict.OreDictionary;
import techreborn.blocks.BlockAesu;
import techreborn.blocks.BlockAlloyFurnace;
import techreborn.blocks.BlockAlloySmelter;
import techreborn.blocks.BlockAssemblingMachine;
@ -79,6 +80,7 @@ public class ModBlocks {
public static Block lathe;
public static Block platecuttingmachine;
public static Block Idsu;
public static Block Aesu;
public static Block ore;
public static Block storage;
@ -192,6 +194,9 @@ public class ModBlocks {
Idsu = new BlockIDSU(Material.rock);
GameRegistry.registerBlock(Idsu, "idsu");
Aesu = new BlockAesu(Material.rock);
GameRegistry.registerBlock(Aesu, "aesu");
registerOreDict();
}