mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
fixed Ravnica at War exiling all permanents
This commit is contained in:
parent
519dda711d
commit
e2f5fc578d
1 changed files with 1 additions and 2 deletions
|
@ -5,7 +5,6 @@ import mage.cards.CardImpl;
|
|||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.filter.predicate.mageobject.MulticoloredPredicate;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -25,7 +24,7 @@ public final class RavnicaAtWar extends CardImpl {
|
|||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{W}");
|
||||
|
||||
// Exile all multicolored permanents.
|
||||
this.getSpellAbility().addEffect(new ExileAllEffect(StaticFilters.FILTER_PERMANENT));
|
||||
this.getSpellAbility().addEffect(new ExileAllEffect(filter));
|
||||
}
|
||||
|
||||
private RavnicaAtWar(final RavnicaAtWar card) {
|
||||
|
|
Loading…
Reference in a new issue