Only shows Members or higher in the top members placeholder

Fixes #267
This commit is contained in:
tastybento 2022-11-26 18:29:03 -08:00
parent f3ee8a381c
commit 93869cb34a
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,7 @@ import world.bentobox.bentobox.api.addons.GameModeAddon;
import world.bentobox.bentobox.api.configuration.Config;
import world.bentobox.bentobox.api.user.User;
import world.bentobox.bentobox.database.objects.Island;
import world.bentobox.bentobox.managers.RanksManager;
import world.bentobox.bentobox.util.Util;
import world.bentobox.level.calculators.Pipeliner;
import world.bentobox.level.commands.AdminLevelCommand;
@ -286,6 +287,7 @@ public class Level extends Addon {
if (island != null) {
// Sort members by rank
return island.getMembers().entrySet().stream()
.filter(e -> e.getValue() >= RanksManager.MEMBER_RANK)
.sorted(Collections.reverseOrder(Map.Entry.comparingByValue()))
.map(Map.Entry::getKey)
.map(getPlayers()::getName)