SteamWar/SpigotCore
Archiviert
13
0

Update SWCommand
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
yoyosource 2022-03-22 19:15:26 +01:00
Ursprung 3cc924e5b0
Commit bf0d41d43d

Datei anzeigen

@ -51,6 +51,10 @@ public abstract class SWCommand {
private Message message = null;
private List<String> 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