Fix: ShamanicRitual, ShamanicRitualTest

This commit is contained in:
2026-03-20 17:13:40 +01:00
parent bde982b82d
commit 4c0e13342f
2 changed files with 9 additions and 9 deletions
@@ -38,7 +38,7 @@ public class ShamanicRitual extends EventCard {
int minIcon = playerMap.values().stream().mapToInt(Integer::intValue).min().orElse(0);
List<Player> maxIconsPlayer = playerMap.entrySet().stream().filter(e -> e.getValue() == maxIcon).map(Map.Entry::getKey).collect(Collectors.toList());
List<Player> minIconsPlayer = playerMap.entrySet().stream().filter(e -> e.getValue() == minIcon).map(Map.Entry::getKey).collect(Collectors.toList());
List<Player> minIconsPlayer = playerMap.entrySet().stream().filter(e -> e.getValue() == minIcon).map(Map.Entry::getKey).filter(player -> !maxIconsPlayer.contains(player)).collect(Collectors.toList());
for (Player player : maxIconsPlayer) {