mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
Fix Great Unclean One counting players who have lost the game that turn
This commit is contained in:
parent
1a96b0f065
commit
81842c83e3
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ enum GreatUncleanOneValue implements DynamicValue {
|
|||
}
|
||||
int life = player.getLife();
|
||||
return game
|
||||
.getOpponents(player.getId())
|
||||
.getOpponents(player.getId(), true)
|
||||
.stream()
|
||||
.map(game::getPlayer)
|
||||
.filter(Objects::nonNull)
|
||||
|
|
Loading…
Reference in a new issue