RemovedRecipeLoaderFromBlocks
This commit is contained in:
parent
15e169a120
commit
a56657539a
2 changed files with 1 additions and 9 deletions
|
@ -103,13 +103,6 @@ public class BlockProcessor extends BlockMachine implements IExtraObjectInfo
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void loadRecipes()
|
||||
{
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void loadOreNames()
|
||||
{
|
||||
|
|
|
@ -36,8 +36,7 @@ public class TileEntityProcessor extends TileEntityEnergyMachine
|
|||
{
|
||||
if (this.processorData == null)
|
||||
{
|
||||
int g = this.worldObj.getBlockMetadata(this.xCoord, this.yCoord, this.zCoord) / 4;
|
||||
this.processorData = ProcessorData.values()[g];
|
||||
this.processorData = ProcessorData.values()[this.worldObj.getBlockMetadata(this.xCoord, this.yCoord, this.zCoord) / 4];
|
||||
this.WATTS_PER_TICK = processorData.wattPerTick;
|
||||
this.MAX_WATTS = this.WATTS_PER_TICK * 20;
|
||||
|
||||
|
|
Loading…
Reference in a new issue