Removed unneeded var from battery box
This commit is contained in:
parent
c1fea3aeb1
commit
ea86928124
1 changed files with 2 additions and 5 deletions
|
@ -32,9 +32,6 @@ public class TileBattery extends TileEnergyDistribution implements IVoltageInput
|
||||||
/** The transfer rate **/
|
/** The transfer rate **/
|
||||||
public static final long DEFAULT_WATTAGE = getEnergyForTier(0);
|
public static final long DEFAULT_WATTAGE = getEnergyForTier(0);
|
||||||
|
|
||||||
/** Voltage increases as series connection increases */
|
|
||||||
public static final long DEFAULT_VOLTAGE = UniversalElectricity.DEFAULT_VOLTAGE;
|
|
||||||
|
|
||||||
public TileBattery()
|
public TileBattery()
|
||||||
{
|
{
|
||||||
this.energy = new EnergyStorageHandler(0);
|
this.energy = new EnergyStorageHandler(0);
|
||||||
|
@ -97,13 +94,13 @@ public class TileBattery extends TileEnergyDistribution implements IVoltageInput
|
||||||
@Override
|
@Override
|
||||||
public long getVoltageOutput(ForgeDirection side)
|
public long getVoltageOutput(ForgeDirection side)
|
||||||
{
|
{
|
||||||
return DEFAULT_VOLTAGE;
|
return UniversalElectricity.DEFAULT_VOLTAGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public long getVoltageInput(ForgeDirection direction)
|
public long getVoltageInput(ForgeDirection direction)
|
||||||
{
|
{
|
||||||
return DEFAULT_VOLTAGE;
|
return UniversalElectricity.DEFAULT_VOLTAGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue