1.0.0-SNAPSHOT-U99

+ Fixed constructor issue in the BossCommandManager
This commit is contained in:
Charles 2018-12-02 00:53:54 +08:00
parent ef1cfa003c
commit a51f31e82f
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ public class BossCommandManager implements ILoadable {
this.commandService.registerSubCommand(new BossCreateCmd(this.customBosses.getBossEntityContainer()));
this.commandService.registerSubCommand(new BossDebugCmd(this.customBosses.getDebugManager()));
this.commandService.registerSubCommand(new BossDropTableCmd(this.customBosses.getBossPanelManager()));
this.commandService.registerSubCommand(new BossEditCmd(this.customBosses.getBossPanelManager()));
this.commandService.registerSubCommand(new BossEditCmd(this.customBosses.getBossPanelManager(), this.customBosses.getBossEntityContainer()));
this.commandService.registerSubCommand(new BossGiveEggCmd(this.customBosses.getBossesFileManager(), this.customBosses.getBossEntityManager()));
this.commandService.registerSubCommand(new BossHelpCmd());
this.commandService.registerSubCommand(new BossInfoCmd(this.customBosses.getBossesFileManager(), this.customBosses.getBossEntityManager()));

View File

@ -20,7 +20,7 @@
<properties>
<!--<plugin.version>maven-version-number-SNAPSHOT-U90</plugin.version>-->
<plugin.version>1.0.0-U98</plugin.version>
<plugin.version>1.0.0-U99</plugin.version>
<plugin.name>EpicBosses</plugin.name>
<plugin.main>com.songoda.epicbosses.CustomBosses</plugin.main>
<plugin.author>AMinecraftDev</plugin.author>