fixed Fire Prophecy

This commit is contained in:
Evan Kranzler 2020-04-20 22:07:30 -04:00
parent b92eb1fdcb
commit 1fb3bba0ca

View file

@ -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;
} }
} }