12
0

CommandFramework3 #94

Manuell gemergt
Zeanon hat 71 Commits von CommandFramework3 nach master 2021-03-30 21:15:40 +02:00 zusammengeführt
Nur Änderungen aus Commit bba1c1fbf7 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -63,7 +63,8 @@ public abstract class SWCommand {
});
for (Method method : getClass().getDeclaredMethods()) {
if (method.getDeclaredAnnotation(Register.class) == null || !validMethod(method)) continue;
if (method.getDeclaredAnnotation(Register.class) == null) continue;
if (!validMethod(method)) continue;
if (method.getReturnType() == Void.TYPE) {
commandSet.add(new InternalCommand(this, method));
}