From b796e15c1cfe431d89702a5d688f5419cd2dc4df Mon Sep 17 00:00:00 2001 From: yoyosource Date: Tue, 10 May 2022 10:18:05 +0200 Subject: [PATCH] Implement CommandFramework via CommonCore --- SpigotCore_Main/src/de/steamwar/command/SWCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpigotCore_Main/src/de/steamwar/command/SWCommand.java b/SpigotCore_Main/src/de/steamwar/command/SWCommand.java index a56813e..e74f9b1 100644 --- a/SpigotCore_Main/src/de/steamwar/command/SWCommand.java +++ b/SpigotCore_Main/src/de/steamwar/command/SWCommand.java @@ -51,7 +51,7 @@ public class SWCommand extends AbstractSWCommand { super(CommandSender.class, command); } - protected SWCommand(String command, String[] aliases) { + protected SWCommand(String command, String... aliases) { super(CommandSender.class, command, aliases); }