From 7d57effd65cba66b41620c28e5edca2623f10fbd Mon Sep 17 00:00:00 2001 From: Florian CUNY Date: Thu, 11 Apr 2019 11:02:56 +0200 Subject: [PATCH] Improved the names of the two previously added placeholders island_trusted_count -> island_trustees_count island_coop_count -> island_coops_count #621 --- .../world/bentobox/bentobox/lists/GameModePlaceholder.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/world/bentobox/bentobox/lists/GameModePlaceholder.java b/src/main/java/world/bentobox/bentobox/lists/GameModePlaceholder.java index dea3e63cd..7290cf2cc 100644 --- a/src/main/java/world/bentobox/bentobox/lists/GameModePlaceholder.java +++ b/src/main/java/world/bentobox/bentobox/lists/GameModePlaceholder.java @@ -54,12 +54,12 @@ public enum GameModePlaceholder { * Displays the amount of players that are TRUSTED on this island. * @since 1.5.0 */ - ISLAND_TRUSTED_COUNT("island_trusted_count", (addon, user, island) -> island == null ? "" : String.valueOf(island.getMemberSet(RanksManager.TRUSTED_RANK, false).size())), + ISLAND_TRUSTEES_COUNT("island_trustees_count", (addon, user, island) -> island == null ? "" : String.valueOf(island.getMemberSet(RanksManager.TRUSTED_RANK, false).size())), /** * Displays the amount of players that are TRUSTED on this island. * @since 1.5.0 */ - ISLAND_COOP_COUNT("island_coop_count", (addon, user, island) -> island == null ? "" : String.valueOf(island.getMemberSet(RanksManager.COOP_RANK, false).size())), + ISLAND_COOPS_COUNT("island_coops_count", (addon, user, island) -> island == null ? "" : String.valueOf(island.getMemberSet(RanksManager.COOP_RANK, false).size())), /** * Displays the amount of players that are currently visiting the island. * @since 1.5.0