mirror of
https://github.com/BentoBoxWorld/Challenges.git
synced 2024-11-13 06:05:46 +01:00
Fix wrongly display message for required money in edit challenge gui (#119)
It showed required level instead of required money in element description.
This commit is contained in:
parent
34ed09e768
commit
9f8bf03708
@ -604,7 +604,7 @@ public class EditChallengeGUI extends CommonGUI
|
||||
{
|
||||
name = this.user.getTranslation("challenges.gui.buttons.admin.required-blocks");
|
||||
|
||||
description = new ArrayList<>(this.challenge.getRequiredEntities().size() + 1);
|
||||
description = new ArrayList<>(this.challenge.getRequiredBlocks().size() + 1);
|
||||
description.add(this.user.getTranslation("challenges.gui.descriptions.admin.required-blocks"));
|
||||
|
||||
for (Map.Entry<Material, Integer> entry : this.challenge.getRequiredBlocks().entrySet())
|
||||
@ -713,7 +713,7 @@ public class EditChallengeGUI extends CommonGUI
|
||||
{
|
||||
name = this.user.getTranslation("challenges.gui.buttons.admin.required-items");
|
||||
|
||||
description = new ArrayList<>(this.challenge.getRequiredEntities().size() + 1);
|
||||
description = new ArrayList<>(this.challenge.getRequiredItems().size() + 1);
|
||||
description.add(this.user.getTranslation("challenges.gui.descriptions.admin.required-items"));
|
||||
|
||||
for (ItemStack itemStack : this.challenge.getRequiredItems())
|
||||
@ -847,7 +847,7 @@ public class EditChallengeGUI extends CommonGUI
|
||||
description = new ArrayList<>(2);
|
||||
description.add(this.user.getTranslation("challenges.gui.descriptions.admin.required-money"));
|
||||
description.add(this.user.getTranslation("challenges.gui.descriptions.current-value",
|
||||
"[value]", Long.toString(this.challenge.getRequiredIslandLevel())));
|
||||
"[value]", Long.toString(this.challenge.getRequiredMoney())));
|
||||
|
||||
icon = new ItemStack(this.addon.isEconomyProvided() ? Material.GOLD_INGOT : Material.BARRIER);
|
||||
clickHandler = (panel, user, clickType, slot) -> {
|
||||
|
Loading…
Reference in New Issue
Block a user