Re-add localization checks to tooltips

This commit is contained in:
Nick 2016-03-20 22:55:03 -07:00
parent fc70319fa2
commit 6cd993a619
4 changed files with 7 additions and 3 deletions

View file

@ -94,7 +94,7 @@ public class ItemBoundSword extends ItemSword implements IBindable, IActivatable
{
NBTHelper.checkNBT(stack);
// if (StatCollector.canTranslate("tooltip.BloodMagic.bound.sword.desc"))
if (TextHelper.canTranslate("tooltip.BloodMagic.bound.sword.desc"))
tooltip.add(TextHelper.localizeEffect("tooltip.BloodMagic.bound.sword.desc"));
tooltip.add(TextHelper.localize("tooltip.BloodMagic." + (getActivated(stack) ? "activated" : "deactivated")));