mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
fixed Crosis, the Purger's discard effect
This commit is contained in:
parent
6a582ed669
commit
42fd5a6410
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ class CrosisThePurgerEffect extends OneShotEffect {
|
||||||
}
|
}
|
||||||
damagedPlayer.revealCards("hand of " + damagedPlayer.getName(), damagedPlayer.getHand(), game);
|
damagedPlayer.revealCards("hand of " + damagedPlayer.getName(), damagedPlayer.getHand(), game);
|
||||||
Cards cards = new CardsImpl(
|
Cards cards = new CardsImpl(
|
||||||
player.getHand()
|
damagedPlayer.getHand()
|
||||||
.getCards(game)
|
.getCards(game)
|
||||||
.stream()
|
.stream()
|
||||||
.filter(card -> card.getColor(game).shares(choice.getColor()))
|
.filter(card -> card.getColor(game).shares(choice.getColor()))
|
||||||
|
|
Loading…
Reference in a new issue