Auto-Sync

This commit is contained in:
DarkGuardsman 2013-12-04 07:46:20 -05:00
parent 87d267869a
commit 76cd56a6cc
2 changed files with 5 additions and 5 deletions

View file

@ -19,8 +19,8 @@ public class TileEntityMechCompBox extends TileEntityCompBox implements INetwork
public TileEntityMechCompBox()
{
this.MAX_WATTS = 100;
this.WATTS_PER_TICK = .001f; //1w
this.MAX_JOULES_STORED = 100;
this.JOULES_PER_TICK = .001f; //1w
}
@Override
@ -69,7 +69,7 @@ public class TileEntityMechCompBox extends TileEntityCompBox implements INetwork
@Override
public float getPartMaxEnergy()
{
return this.MAX_WATTS;
return this.MAX_JOULES_STORED;
}
@Override

View file

@ -15,8 +15,8 @@ public class TileEntityFarmBox extends TileEntityEnergyMachine
public TileEntityFarmBox()
{
this.MAX_WATTS = 100;
this.WATTS_PER_TICK = 5;
this.MAX_JOULES_STORED = 100;
this.JOULES_PER_TICK = 5;
}
@Override