From a51f31e82f99c68a603e8446e0d3428f72b4f810 Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 2 Dec 2018 00:53:54 +0800 Subject: [PATCH] 1.0.0-SNAPSHOT-U99 + Fixed constructor issue in the BossCommandManager --- .../src/com/songoda/epicbosses/managers/BossCommandManager.java | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin-modules/Core/src/com/songoda/epicbosses/managers/BossCommandManager.java b/plugin-modules/Core/src/com/songoda/epicbosses/managers/BossCommandManager.java index 99af6f8..fcf561b 100644 --- a/plugin-modules/Core/src/com/songoda/epicbosses/managers/BossCommandManager.java +++ b/plugin-modules/Core/src/com/songoda/epicbosses/managers/BossCommandManager.java @@ -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())); diff --git a/pom.xml b/pom.xml index 601f2ff..f2a4d9b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ - 1.0.0-U98 + 1.0.0-U99 EpicBosses com.songoda.epicbosses.CustomBosses AMinecraftDev