summaryrefslogtreecommitdiff
path: root/common/darkknight/jewelrycraft/block/BlockList.java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2013-12-15 17:38:52 +0200
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2013-12-15 17:38:52 +0200
commit3e7036bf39c640b9d0dd94115f8b1f7947d26f71 (patch)
tree191f16ae53a9a5fb854a5f573f4496e7ae690a10 /common/darkknight/jewelrycraft/block/BlockList.java
parent06415dc21d71e8ac363dae5c56c5317971f7aede (diff)
Added the molder
Diffstat (limited to 'common/darkknight/jewelrycraft/block/BlockList.java')
-rw-r--r--common/darkknight/jewelrycraft/block/BlockList.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/darkknight/jewelrycraft/block/BlockList.java b/common/darkknight/jewelrycraft/block/BlockList.java
index e29287d..f783d84 100644
--- a/common/darkknight/jewelrycraft/block/BlockList.java
+++ b/common/darkknight/jewelrycraft/block/BlockList.java
@@ -7,7 +7,9 @@ import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.registry.GameRegistry;
import darkknight.jewelrycraft.JewelrycraftMod;
import darkknight.jewelrycraft.config.ConfigHandler;
+import darkknight.jewelrycraft.renders.TileEntityMolderRender;
import darkknight.jewelrycraft.renders.TileEntitySmelterRender;
+import darkknight.jewelrycraft.tileentity.TileEntityMolder;
import darkknight.jewelrycraft.tileentity.TileEntitySmelter;
public class BlockList
@@ -34,7 +36,10 @@ public class BlockList
GameRegistry.registerBlock(jewelCraftingTable, "jewelCraftingTable");
GameRegistry.registerTileEntity(TileEntitySmelter.class, "30");
+ GameRegistry.registerTileEntity(TileEntityMolder.class, "31");
+
ClientRegistry.bindTileEntitySpecialRenderer(TileEntitySmelter.class, new TileEntitySmelterRender());
+ ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMolder.class, new TileEntityMolderRender());
}
}
}