Fixes #281
This commit is contained in:
parent
3f41e26ece
commit
a47b1b1f27
1 changed files with 4 additions and 4 deletions
|
@ -269,10 +269,6 @@ public abstract class TilePowerAcceptor extends RFProviderTile implements
|
|||
tag.setTag("TilePowerAcceptor", data);
|
||||
}
|
||||
|
||||
public int getEnergyScaled(int scale) {
|
||||
return (int) ((energy * scale / getMaxOutput() * ConfigTechReborn.euPerRF));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addInfo(List<String> info, boolean isRealTile) {
|
||||
info.add(ChatFormatting.LIGHT_PURPLE + "Energy buffer Size " + ChatFormatting.GREEN + getEUString(getMaxPower()));
|
||||
|
@ -312,4 +308,8 @@ public abstract class TilePowerAcceptor extends RFProviderTile implements
|
|||
}
|
||||
|
||||
|
||||
public int getEnergyScaled(int scale) {
|
||||
return (int) ((energy * scale / getMaxPower()));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue