RemovedRecipeLoaderFromBlocks

This commit is contained in:
DarkGuardsman 2013-09-21 18:15:32 -04:00
parent 15e169a120
commit a56657539a
2 changed files with 1 additions and 9 deletions

View file

@ -103,13 +103,6 @@ public class BlockProcessor extends BlockMachine implements IExtraObjectInfo
} }
} }
@Override
public void loadRecipes()
{
// TODO Auto-generated method stub
}
@Override @Override
public void loadOreNames() public void loadOreNames()
{ {

View file

@ -36,8 +36,7 @@ public class TileEntityProcessor extends TileEntityEnergyMachine
{ {
if (this.processorData == null) if (this.processorData == null)
{ {
int g = this.worldObj.getBlockMetadata(this.xCoord, this.yCoord, this.zCoord) / 4; this.processorData = ProcessorData.values()[this.worldObj.getBlockMetadata(this.xCoord, this.yCoord, this.zCoord) / 4];
this.processorData = ProcessorData.values()[g];
this.WATTS_PER_TICK = processorData.wattPerTick; this.WATTS_PER_TICK = processorData.wattPerTick;
this.MAX_WATTS = this.WATTS_PER_TICK * 20; this.MAX_WATTS = this.WATTS_PER_TICK * 20;