mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Heartwood Storyteller - Fixed that the draw effect was not optional.
This commit is contained in:
parent
e611b48ea9
commit
05ec58c791
1 changed files with 12 additions and 10 deletions
|
@ -131,9 +131,11 @@ class HeartwoodStorytellerEffect extends OneShotEffect {
|
||||||
for (UUID playerId : game.getOpponents(this.getTargetPointer().getFirst(game, source))) {
|
for (UUID playerId : game.getOpponents(this.getTargetPointer().getFirst(game, source))) {
|
||||||
Player player = game.getPlayer(playerId);
|
Player player = game.getPlayer(playerId);
|
||||||
if (player != null) {
|
if (player != null) {
|
||||||
|
if (player.chooseUse(outcome, "Draw a card?", source, game)) {
|
||||||
player.drawCards(1, game);
|
player.drawCards(1, game);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue