Made Solderer tooltip less big, fixes #719

This commit is contained in:
Raoul Van den Berge
2016-12-08 16:05:07 +01:00
parent 2d755dcb75
commit 4a2c1a62a7
4 changed files with 15 additions and 4 deletions

View File

@@ -31,8 +31,14 @@ public class BlockSolderer extends BlockNode {
super.addInformation(stack, player, tooltip, advanced);
tooltip.add(I18n.format(
"block.refinedstorage:solderer.tooltip",
TextFormatting.WHITE + I18n.format("block.refinedstorage:controller.0.name") + TextFormatting.GRAY,
"block.refinedstorage:solderer.tooltip.0",
TextFormatting.WHITE + I18n.format("block.refinedstorage:controller.0.name") + TextFormatting.GRAY
));
tooltip.add(I18n.format("block.refinedstorage:solderer.tooltip.1"));
tooltip.add(I18n.format(
"block.refinedstorage:solderer.tooltip.2",
TextFormatting.WHITE + I18n.format("block.refinedstorage:cable.name") + TextFormatting.GRAY
));
}