Work for #212
This commit is contained in:
parent
227d5fe19b
commit
2483dc0c2f
1 changed files with 6 additions and 2 deletions
|
@ -291,8 +291,12 @@ public abstract class TilePowerAcceptor extends RFProviderTile implements
|
|||
@Override
|
||||
public void addInfo(List<String> info, boolean isRealTile) {
|
||||
info.add(ChatFormatting.LIGHT_PURPLE + "Energy buffer Size " + ChatFormatting.GREEN + getEUString(getMaxPower()));
|
||||
info.add(ChatFormatting.LIGHT_PURPLE +"Max Input " + ChatFormatting.GREEN + getEUString(getMaxInput()));
|
||||
info.add(ChatFormatting.LIGHT_PURPLE +"Max Output " + ChatFormatting.GREEN + getEUString(getMaxOutput()));
|
||||
if(getMaxInput() != 0){
|
||||
info.add(ChatFormatting.LIGHT_PURPLE +"Max Input " + ChatFormatting.GREEN + getEUString(getMaxInput()));
|
||||
}
|
||||
if(getMaxOutput() != 0){
|
||||
info.add(ChatFormatting.LIGHT_PURPLE +"Max Output " + ChatFormatting.GREEN + getEUString(getMaxOutput()));
|
||||
}
|
||||
}
|
||||
|
||||
private String getEUString(double euValue) {
|
||||
|
|
Loading…
Add table
Reference in a new issue