Added the tooltip to tell you which keys to press to see the progress for the next level on your Living Armour Upgrades

This commit is contained in:
WayofTime 2016-08-07 21:00:58 -04:00
parent eceb041fab
commit 2350f0e35b
3 changed files with 7 additions and 0 deletions

View file

@ -297,6 +297,10 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP
}
tooltip.add(TextHelper.localizeEffect("tooltip.BloodMagic.livingArmour.upgrade.points", armour.totalUpgradePoints, armour.maxUpgradePoints));
if (!(Keyboard.isKeyDown(Keyboard.KEY_LSHIFT) && Keyboard.isKeyDown(Keyboard.KEY_M)))
{
tooltip.add(TextHelper.localizeEffect("tooltip.BloodMagic.livingArmour.extraExtraInfo"));
}
}
super.addInformation(stack, player, tooltip, advanced);