From 780dfe1e73a8d53549ca5f1bcd77e4cfab925198 Mon Sep 17 00:00:00 2001 From: mDiyo Date: Sun, 6 Oct 2013 09:46:22 -0700 Subject: [PATCH] Dont break the Smeltery yet, really! --- src/tconstruct/blocks/SmelteryBlock.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/tconstruct/blocks/SmelteryBlock.java b/src/tconstruct/blocks/SmelteryBlock.java index 6d0d3647f4e..0b473092f0d 100644 --- a/src/tconstruct/blocks/SmelteryBlock.java +++ b/src/tconstruct/blocks/SmelteryBlock.java @@ -40,11 +40,11 @@ public SmelteryBlock(int id) /* Rendering */ - /*@Override + @Override public int getRenderType () { return SmelteryRender.smelteryModel; - }*/ + } @Override public String[] getTextureNames () @@ -216,7 +216,7 @@ public TileEntity createTileEntity (World world, int metadata) switch (metadata) { case 0: - return new AdaptiveSmelteryLogic(); + return new SmelteryLogic(); case 1: return new SmelteryDrainLogic(); case 3: @@ -225,7 +225,7 @@ public TileEntity createTileEntity (World world, int metadata) return new MultiServantLogic(); } - /*@Override + @Override public void onBlockPlacedBy (World world, int x, int y, int z, EntityLivingBase entityliving, ItemStack stack) { super.onBlockPlacedBy(world, x, y, z, entityliving, stack); @@ -243,7 +243,7 @@ public void onBlockPlacedElsewhere (World world, int x, int y, int z, EntityLivi public void breakBlock (World world, int x, int y, int z, int par5, int par6) //Don't drop inventory { world.removeBlockTileEntity(x, y, z); - }*/ + } @Override public void getSubBlocks (int id, CreativeTabs tab, List list)