1.0.0-SNAPSHOT-U50

+ Fixed issue with commands not loading
This commit is contained in:
AMinecraftDev 2018-11-14 22:25:14 +08:00
parent 7130f9acd3
commit 3d5022b3e0
2 changed files with 4 additions and 4 deletions

View File

@ -34,12 +34,12 @@ public class BossCommandManager implements ILoadable {
this.commandService.registerSubCommand(new BossDropTableCmd(this.customBosses.getBossPanelManager()));
this.commandService.registerSubCommand(new BossEditCmd(this.customBosses.getBossPanelManager()));
this.commandService.registerSubCommand(new BossHelpCmd());
this.commandService.registerSubCommand(new BossInfoCmd());
this.commandService.registerSubCommand(new BossInfoCmd(this.customBosses.getBossesFileManager(), this.customBosses.getBossEntityManager()));
this.commandService.registerSubCommand(new BossItemsCmd(this.customBosses.getBossPanelManager()));
this.commandService.registerSubCommand(new BossKillAllCmd(this.customBosses.getBossEntityManager()));
this.commandService.registerSubCommand(new BossListCmd());
this.commandService.registerSubCommand(new BossListCmd(this.customBosses.getBossPanelManager()));
this.commandService.registerSubCommand(new BossMenuCmd(this.customBosses.getBossPanelManager()));
this.commandService.registerSubCommand(new BossNearbyCmd());
this.commandService.registerSubCommand(new BossNearbyCmd(this.customBosses));
this.commandService.registerSubCommand(new BossReloadCmd(this.customBosses));
this.commandService.registerSubCommand(new BossShopCmd());
this.commandService.registerSubCommand(new BossSkillsCmd(this.customBosses.getBossPanelManager()));

View File

@ -19,7 +19,7 @@
</modules>
<properties>
<plugin.version>1.0.0-SNAPSHOT-U49</plugin.version>
<plugin.version>1.0.0-SNAPSHOT-U50</plugin.version>
<plugin.name>EpicBosses</plugin.name>
<plugin.main>com.songoda.epicbosses.CustomBosses</plugin.main>
<plugin.author>AMinecraftDev</plugin.author>