Fixed a bug of Fa'adiya Seer.

This commit is contained in:
LevelX2 2013-10-24 12:08:01 +02:00
parent 02c54a1a9e
commit ccf1aa14ef

View file

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