Add CommandFramework (needs Message System for completion)? #1

Zusammengeführt
Lixfel hat 9 Commits von CommandFramework nach master 2022-05-01 22:42:55 +02:00 zusammengeführt
Nur Änderungen aus Commit 598e8b4061 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -180,7 +180,7 @@ public abstract class AbstractSWCommand<T> {
commandSystemWarning(() -> "The method '" + method.toString() + "' is lacking the first parameter of type '" + clazz.getTypeName() + "'");
return;
}
if (returnType != null && method.getReturnType() != returnType) {
if (returnType != null && !method.getReturnType().isAssignableFrom(returnType)) {
commandSystemWarning(() -> "The method '" + method.toString() + "' is lacking the desired return type '" + returnType.getTypeName() + "'");
return;
}