Remove superflous spaces in tooltip for chargeable block items.

This commit is contained in:
Sebastian Hartte
2020-06-14 19:47:41 +02:00
parent 669fad0497
commit 129b8f5a2b
@@ -74,7 +74,7 @@ public class AEBaseBlockItemChargeable extends AEBaseBlockItem implements IAEIte
lines.add( GuiText.StoredEnergy.textComponent().appendText(':' + MessageFormat.format( " {0,number,#} ", internalCurrentPower ))
.appendSibling(new TranslationTextComponent( PowerUnits.AE.unlocalizedName ))
.appendText(" - " + MessageFormat.format( " {0,number,#.##%} ", percent )));
.appendText(" - " + MessageFormat.format( "{0,number,#.##%}", percent )));
}
}