SteamWar/SpigotCore
Archiviert
13
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 173361e1be werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -77,7 +77,7 @@ public abstract class SWCommand {
return strings;
}
};
SWCommandUtils.commandMap.register("steamwar", this.command);
register();
for (Method method : getClass().getDeclaredMethods()) {
addMapper(Mapper.class, method, i -> i == 0, false, TypeMapper.class, (anno, typeMapper) -> {
@ -176,6 +176,10 @@ public abstract class SWCommand {
command.unregister(SWCommandUtils.commandMap);
}
protected void register() {
SWCommandUtils.commandMap.register("steamwar", this.command);
}
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
protected @interface Register {