diff --git a/SpigotCore_Main/src/de/steamwar/command/SWCommand.java b/SpigotCore_Main/src/de/steamwar/command/SWCommand.java index 73934ce..2a55d59 100644 --- a/SpigotCore_Main/src/de/steamwar/command/SWCommand.java +++ b/SpigotCore_Main/src/de/steamwar/command/SWCommand.java @@ -51,6 +51,10 @@ public abstract class SWCommand { private Message message = null; private List defaultHelpMessages = new ArrayList<>(); + protected SWCommand(String command) { + this(command, new String[0]); + } + protected SWCommand(String command, String... aliases) { this.command = new Command(command, "", "/" + command, Arrays.asList(aliases)) { @Override