From 8a417e32c113a753a36e93a1a66d51749207701b Mon Sep 17 00:00:00 2001 From: yoyosource Date: Tue, 14 Jun 2022 18:19:25 +0200 Subject: [PATCH] Fix some stuff for later use --- src/de/steamwar/command/SWCommand.java | 4 ++++ 1 file changed, 4 insertions(+) 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;