Improved the names of the two previously added placeholders

island_trusted_count -> island_trustees_count
island_coop_count -> island_coops_count
#621
This commit is contained in:
Florian CUNY 2019-04-11 11:02:56 +02:00
parent 5450ef6a59
commit 7d57effd65

View File

@ -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