Fix incorrect message reference for `/as message`

This commit is contained in:
Thijs Wiefferink 2018-01-22 16:07:40 +01:00
parent 0351188671
commit 21339cbf7c
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ public class MessageCommand extends CommandAreaShop {
@Override
public String getHelp(CommandSender target) {
if(target.hasPermission("areashop.message")) {
return "help-message";
return null; // Internal command, no need to show in the help list
}
return null;
}