Fix localization of /bm network get NAME (#955)
This commit is contained in:
parent
f2931deec6
commit
37fad3f349
|
@ -14,7 +14,7 @@ import java.util.*;
|
||||||
|
|
||||||
public class CommandBloodMagic extends CommandBase
|
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 List<String> aliases = new ArrayList<String>();
|
||||||
private final Map<String, ISubCommand> subCommands = new HashMap<String, ISubCommand>();
|
private final Map<String, ISubCommand> subCommands = new HashMap<String, ISubCommand>();
|
||||||
|
|
||||||
|
|
|
@ -172,7 +172,7 @@ public class SubCommandNetwork extends SubCommandBase
|
||||||
SoulNetwork network = NetworkHelper.getSoulNetwork(player);
|
SoulNetwork network = NetworkHelper.getSoulNetwork(player);
|
||||||
|
|
||||||
if (args.length > 1)
|
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())));
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue