mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Fixed a bug of Fa'adiya Seer.
This commit is contained in:
parent
02c54a1a9e
commit
ccf1aa14ef
1 changed files with 2 additions and 2 deletions
|
@ -100,11 +100,11 @@ class FaadiyahSeerEffect extends OneShotEffect<FaadiyahSeerEffect> {
|
|||
Card card = controller.getLibrary().getFromTop(game);
|
||||
controller.drawCards(1, game);
|
||||
controller.revealCards("Fa'adiyah Seer", new CardsImpl(card), game);
|
||||
if (filter.match(card, game)) {
|
||||
if (!filter.match(card, game)) {
|
||||
controller.discard(card, source, game);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue