mirror of
https://github.com/correl/mage.git
synced 2025-04-03 01:08:59 -09:00
[MID] Fix Phantom Carriage allowing any creature card to be found while searching. Closes #9405.
This commit is contained in:
parent
8aed9d473a
commit
2015e4e236
1 changed files with 2 additions and 1 deletions
|
@ -65,7 +65,7 @@ class PhantomCarriageEffect extends SearchEffect {
|
|||
}
|
||||
|
||||
public PhantomCarriageEffect() {
|
||||
super(new TargetCardInLibrary(StaticFilters.FILTER_CARD_CREATURE), Outcome.Neutral);
|
||||
super(new TargetCardInLibrary(filter), Outcome.Neutral);
|
||||
staticText = "search your library for a card with flashback or disturb, put it into your graveyard, then shuffle";
|
||||
}
|
||||
|
||||
|
@ -80,6 +80,7 @@ class PhantomCarriageEffect extends SearchEffect {
|
|||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
// TODO: create common effect for this
|
||||
Player controller = game.getPlayer(source.getControllerId());
|
||||
if (controller != null) {
|
||||
if (controller.searchLibrary(target, source, game)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue