mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
fixed Fire Prophecy
This commit is contained in:
parent
b92eb1fdcb
commit
1fb3bba0ca
1 changed files with 3 additions and 2 deletions
|
@ -73,8 +73,9 @@ class FireProphecyEffect extends OneShotEffect {
|
||||||
if (card == null) {
|
if (card == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
player.getLibrary().putOnBottom(card, game);
|
if (player.putCardsOnBottomOfLibrary(card, game, source, false)) {
|
||||||
player.drawCards(1, source.getSourceId(), game);
|
player.drawCards(1, source.getSourceId(), game);
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue