Auto-Sync
This commit is contained in:
parent
87d267869a
commit
76cd56a6cc
2 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue