Skip to content

Commit

Permalink
Dont break the Smeltery yet, really!
Browse files Browse the repository at this point in the history
  • Loading branch information
mDiyo committed Oct 6, 2013
1 parent 4f34799 commit 780dfe1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/tconstruct/blocks/SmelteryBlock.java
Expand Up @@ -40,11 +40,11 @@ public SmelteryBlock(int id)

/* Rendering */

/*@Override
@Override
public int getRenderType ()
{
return SmelteryRender.smelteryModel;
}*/
}

@Override
public String[] getTextureNames ()
Expand Down Expand Up @@ -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:
Expand All @@ -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);
Expand All @@ -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)
Expand Down

0 comments on commit 780dfe1

Please sign in to comment.