mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
Make /xplock work for localized skill names.
This commit is contained in:
parent
c80bb45cad
commit
27ba4ff800
@ -37,12 +37,14 @@ public class XplockCommand extends SpoutCommand {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!sender.hasPermission("mcmmo.commands.xplock." + args[0].toLowerCase())) {
|
||||
SkillType skill = SkillType.getSkill(args[0]);
|
||||
|
||||
if (!sender.hasPermission("mcmmo.commands.xplock." + SkillTools.getSkillName(skill).toLowerCase())) {
|
||||
sender.sendMessage(command.getPermissionMessage());
|
||||
return true;
|
||||
}
|
||||
|
||||
lockXpBar(sender, SkillType.getSkill(args[0]));
|
||||
lockXpBar(sender, skill);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user