1
0

Fix some stuff for later use

Dieser Commit ist enthalten in:
yoyosource 2022-06-14 18:19:25 +02:00
Ursprung 22ef3cd13d
Commit 8a417e32c1

Datei anzeigen

@ -44,6 +44,10 @@ public class SWCommand extends AbstractSWCommand<CommandSender> {
private List<String> defaultHelpMessages = new ArrayList<>();
protected SWCommand(String command) {
this(command, null);
}
protected SWCommand(String command, String permission) {
super(CommandSender.class, command);
this.permission = permission;