1.0.0-SNAPSHOT-U188

+ Fixed up the compiling issue
This commit is contained in:
Charles 2019-01-08 19:14:49 +08:00
parent 45a0877378
commit a5687f8bd2
2 changed files with 3 additions and 3 deletions

View File

@ -42,8 +42,8 @@ public class IntervalSpawnElement implements IAutoSpawnCustomSettingsHandler {
public List<ICustomSettingAction> getCustomSettingActions(AutoSpawn autoSpawn, VariablePanelHandler<AutoSpawn> variablePanelHandler) {
List<ICustomSettingAction> clickActions = new ArrayList<>();
ItemStack clickStack = new ItemStack(Material.IRON_BLOCK);
ClickAction lastBossKilledAction = this.intervalSpawnHandler.getSpawnAfterLastBossIsKilledAction(this);
ClickAction locationAction = this.intervalSpawnHandler.getLocationAction(this);
ClickAction lastBossKilledAction = this.intervalSpawnHandler.getSpawnAfterLastBossIsKilledAction(this, autoSpawn, variablePanelHandler);
ClickAction locationAction = this.intervalSpawnHandler.getLocationAction(this, autoSpawn, variablePanelHandler);
ClickAction placeholderAction = this.intervalSpawnHandler.getPlaceholderAction(this, autoSpawn, variablePanelHandler);
ClickAction spawnRateAction = this.intervalSpawnHandler.getSpawnRateAction(this, autoSpawn);

View File

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