Fix localization of /bm network get NAME (#955)

This commit is contained in:
Nicholas Ignoffo 2016-10-18 16:09:22 -07:00
parent f2931deec6
commit 37fad3f349
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ import java.util.*;
public class CommandBloodMagic extends CommandBase
{
// TODO - Move this and sub commands to CommandTreeBase in 1.11. Much cleaner impl
private final List<String> aliases = new ArrayList<String>();
private final Map<String, ISubCommand> subCommands = new HashMap<String, ISubCommand>();

View file

@ -172,7 +172,7 @@ public class SubCommandNetwork extends SubCommandBase
SoulNetwork network = NetworkHelper.getSoulNetwork(player);
if (args.length > 1)
sender.addChatMessage(new TextComponentString(TextHelper.localizeEffect("message.divinationsigil.currentessence", network.getCurrentEssence())));
sender.addChatMessage(new TextComponentString(TextHelper.localizeEffect("tooltip.BloodMagic.sigil.divination.currentEssence", network.getCurrentEssence())));
}
},