diff --git a/src/de/steamwar/command/SWCommand.java b/src/de/steamwar/command/SWCommand.java index 8e8e9abb..242ef4d7 100644 --- a/src/de/steamwar/command/SWCommand.java +++ b/src/de/steamwar/command/SWCommand.java @@ -44,6 +44,10 @@ public class SWCommand extends AbstractSWCommand { private List defaultHelpMessages = new ArrayList<>(); + protected SWCommand(String command) { + this(command, null); + } + protected SWCommand(String command, String permission) { super(CommandSender.class, command); this.permission = permission;