SteamWar/SpigotCore
Archiviert
13
0

Remove SWCommand.inject

Dieser Commit ist enthalten in:
yoyosource 2021-05-07 09:23:37 +02:00
Ursprung 0158f24e3e
Commit 5d9b874d4e

Datei anzeigen

@ -168,16 +168,6 @@ public abstract class SWCommand {
SWCommandUtils.commandMap.register("steamwar", this.command);
}
public void inject(Plugin plugin) {
new BukkitRunnable() {
@Override
public void run() {
SWCommand.this.unregister();
SWCommand.this.register();
}
}.runTask(plugin);
}
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
@Repeatable(Register.Registeres.class)