From 1f718427162fa59a22c08a32e68e133fb411aa37 Mon Sep 17 00:00:00 2001 From: bspkrs Date: Sun, 15 Dec 2013 23:17:46 -0500 Subject: moved renderer registry to ClientProxy.java --- common/darkknight/jewelrycraft/block/BlockList.java | 6 ------ 1 file changed, 6 deletions(-) (limited to 'common/darkknight/jewelrycraft/block/BlockList.java') diff --git a/common/darkknight/jewelrycraft/block/BlockList.java b/common/darkknight/jewelrycraft/block/BlockList.java index f783d84..a1dc3a1 100644 --- a/common/darkknight/jewelrycraft/block/BlockList.java +++ b/common/darkknight/jewelrycraft/block/BlockList.java @@ -2,13 +2,10 @@ package darkknight.jewelrycraft.block; import net.minecraft.block.Block; import net.minecraft.block.material.Material; -import cpw.mods.fml.client.registry.ClientRegistry; 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; @@ -37,9 +34,6 @@ public class BlockList GameRegistry.registerTileEntity(TileEntitySmelter.class, "30"); GameRegistry.registerTileEntity(TileEntityMolder.class, "31"); - - ClientRegistry.bindTileEntitySpecialRenderer(TileEntitySmelter.class, new TileEntitySmelterRender()); - ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMolder.class, new TileEntityMolderRender()); } } } -- cgit v1.2.3