mirror of
https://github.com/correl/mage.git
synced 2025-03-17 09:16:26 -09:00
Merge pull request #3653 from spjspj/master
Fix for Kynaios And Tiro of Meletis
This commit is contained in:
commit
eda0afb3d0
1 changed files with 1 additions and 3 deletions
|
@ -141,11 +141,9 @@ class KynaiosAndTirosEffect extends OneShotEffect {
|
||||||
for (UUID playerId : noLandPlayers) {
|
for (UUID playerId : noLandPlayers) {
|
||||||
Player player = game.getPlayer(playerId);
|
Player player = game.getPlayer(playerId);
|
||||||
if (player != null) {
|
if (player != null) {
|
||||||
if (player.chooseUse(outcome.DrawCard, "Draw a card?", source, game)) {
|
|
||||||
player.drawCards(1, game);
|
player.drawCards(1, game);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue