mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-23 13:46:46 +01:00
Added new permissions for the /mmoedit command.
This commit is contained in:
parent
b8eb6186ed
commit
bcaa7ecacb
@ -21,9 +21,11 @@ public class MmoeditCommand implements CommandExecutor {
|
|||||||
int newValue;
|
int newValue;
|
||||||
SkillType skill;
|
SkillType skill;
|
||||||
String skillName;
|
String skillName;
|
||||||
|
// DEPRECATED PERMISSION
|
||||||
|
boolean oldPermission = !CommandHelper.noCommandPermissions(sender, "mcmmo.tools.mmoedit");
|
||||||
String usage = LocaleLoader.getString("Commands.Usage.3", new Object[] {"mmoedit", "[" + LocaleLoader.getString("Commands.Usage.Player") + "]", "<" + LocaleLoader.getString("Commands.Usage.Skill") + ">", "<" + LocaleLoader.getString("Commands.Usage.Level") + ">" });
|
String usage = LocaleLoader.getString("Commands.Usage.3", new Object[] {"mmoedit", "[" + LocaleLoader.getString("Commands.Usage.Player") + "]", "<" + LocaleLoader.getString("Commands.Usage.Skill") + ">", "<" + LocaleLoader.getString("Commands.Usage.Level") + ">" });
|
||||||
|
|
||||||
if (CommandHelper.noCommandPermissions(sender, "mcmmo.tools.mmoedit")) {
|
if (!oldPermission && CommandHelper.noCommandPermissions(sender, "mcmmo.commands.mmoedit")) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -62,6 +64,10 @@ public class MmoeditCommand implements CommandExecutor {
|
|||||||
return true;
|
return true;
|
||||||
|
|
||||||
case 3:
|
case 3:
|
||||||
|
if (!oldPermission && CommandHelper.noCommandPermissions(sender, "mcmmo.commands.mmoedit.others")) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
if (!Misc.isInt(args[2])) {
|
if (!Misc.isInt(args[2])) {
|
||||||
sender.sendMessage(usage);
|
sender.sendMessage(usage);
|
||||||
return true;
|
return true;
|
||||||
|
@ -702,6 +702,10 @@ permissions:
|
|||||||
mcmmo.commands.addxp: true
|
mcmmo.commands.addxp: true
|
||||||
mcmmo.commands.addxp.others: true
|
mcmmo.commands.addxp.others: true
|
||||||
mcmmo.commands.defaults: true
|
mcmmo.commands.defaults: true
|
||||||
|
mcmmo.commands.inspect.far: true
|
||||||
|
mcmmo.commands.inspect.offline: true
|
||||||
|
mcmmo.commands.mmoedit: true
|
||||||
|
mcmmo.commands.mmoedit.others: true
|
||||||
mcmmo.commands.defaults:
|
mcmmo.commands.defaults:
|
||||||
description: Implies all default mcmmo.commands permissions.
|
description: Implies all default mcmmo.commands permissions.
|
||||||
children:
|
children:
|
||||||
@ -736,6 +740,10 @@ permissions:
|
|||||||
description: Allows access to the inspect command for far players
|
description: Allows access to the inspect command for far players
|
||||||
mcmmo.commands.inspect.offline:
|
mcmmo.commands.inspect.offline:
|
||||||
description: Allows access to the inspect command for offline players
|
description: Allows access to the inspect command for offline players
|
||||||
|
mcmmo.commands.mmoedit:
|
||||||
|
description: Allows access to the addlevels command
|
||||||
|
mcmmo.commands.mmoedit.others:
|
||||||
|
description: Allows access to the addlevels command for other players
|
||||||
mcmmo.commands.party.*:
|
mcmmo.commands.party.*:
|
||||||
description: Implies access to all mcmmo.commands.party permissions.
|
description: Implies access to all mcmmo.commands.party permissions.
|
||||||
children:
|
children:
|
||||||
|
Loading…
Reference in New Issue
Block a user