diff --git a/plugin.yml b/plugin.yml index 0ddfe0d0..188121e3 100644 --- a/plugin.yml +++ b/plugin.yml @@ -14,6 +14,7 @@ commands: description: NoCheatPlus command(s). # permissions: nocheatplus.admin.(...) usage: | + Administrative commands overview: / reload: reload NoCheatPlus configuration / info (player): Display the violations of a player / removeplayer (player) [(check type)]: Remove data diff --git a/src/fr/neatmonster/nocheatplus/command/admin/CommandsCommand.java b/src/fr/neatmonster/nocheatplus/command/admin/CommandsCommand.java index ad1d7ded..a865713f 100644 --- a/src/fr/neatmonster/nocheatplus/command/admin/CommandsCommand.java +++ b/src/fr/neatmonster/nocheatplus/command/admin/CommandsCommand.java @@ -37,7 +37,7 @@ public class CommandsCommand extends NCPCommand { String all = TAG + "All commands info:\n"; Command cmd = plugin.getCommand("nocheatplus"); if (cmd != null){ - all += cmd.getUsage().replace("", "ncp") + "\n"; + all += cmd.getUsage().replace("", "ncp") + "Auxiliary commands (actions):\n"; } all += CheckUtils.join(Arrays.asList(moreCommands), "\n"); allCommands = all;