1.0.0-SNAPSHOT-U163

+ Initialized the Give Reward Panels
This commit is contained in:
Charles 2019-01-02 16:56:56 +08:00
parent 4bbb92e0b6
commit a9befbf9a5
2 changed files with 10 additions and 1 deletions

View File

@ -34,6 +34,9 @@ import com.songoda.epicbosses.panel.droptables.types.drop.DropDropTableMainEdito
import com.songoda.epicbosses.panel.droptables.types.give.GiveRewardMainEditPanel;
import com.songoda.epicbosses.panel.droptables.types.give.GiveRewardPositionListPanel;
import com.songoda.epicbosses.panel.droptables.types.give.GiveRewardRewardsListPanel;
import com.songoda.epicbosses.panel.droptables.types.give.drops.GiveDropNewRewardPanel;
import com.songoda.epicbosses.panel.droptables.types.give.drops.GiveDropRewardListPanel;
import com.songoda.epicbosses.panel.droptables.types.give.drops.GiveDropRewardMainEditPanel;
import com.songoda.epicbosses.panel.droptables.types.give.handlers.GiveRewardEditHandler;
import com.songoda.epicbosses.panel.droptables.types.spray.SprayDropNewRewardPanel;
import com.songoda.epicbosses.panel.droptables.types.spray.SprayDropRewardListPanel;
@ -261,6 +264,9 @@ public class BossPanelManager implements ILoadable, IReloadable {
this.giveRewardPositionListMenu = new GiveRewardPositionListPanel(this, panelBuilder10, this.customBosses);
this.giveRewardRewardsListMenu = new GiveRewardRewardsListPanel(this, panelBuilder11, this.customBosses);
this.giveRewardMainEditMenu = new GiveRewardMainEditPanel(this, panelBuilder12, this.customBosses);
this.giveDropNewRewardEditPanel = new GiveDropNewRewardPanel(this, panelBuilder4, this.customBosses);
this.giveDropRewardListPanel = new GiveDropRewardListPanel(this, panelBuilder5, this.customBosses);
this.giveDropRewardMainEditPanel = new GiveDropRewardMainEditPanel(this, panelBuilder3, this.customBosses);
}
private void reloadDropTableEditMenus() {
@ -295,6 +301,9 @@ public class BossPanelManager implements ILoadable, IReloadable {
this.giveRewardPositionListMenu.initializePanel(panelBuilder10);
this.giveRewardPositionListMenu.initializePanel(panelBuilder11);
this.giveRewardMainEditMenu.initializePanel(panelBuilder12);
this.giveDropNewRewardEditPanel.initializePanel(panelBuilder4);
this.giveDropRewardListPanel.initializePanel(panelBuilder5);
this.giveDropRewardMainEditPanel.initializePanel(panelBuilder3);
}
//---------------------------------------------

View File

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