mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Fix Olivia, Crimson Bride (#10397)
This commit is contained in:
parent
c12058744d
commit
94a4642b10
1 changed files with 2 additions and 1 deletions
|
@ -15,6 +15,7 @@ import mage.cards.CardSetInfo;
|
|||
import mage.constants.*;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.filter.common.FilterControlledPermanent;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
@ -102,7 +103,7 @@ class OliviaCrimsonBrideEffect extends OneShotEffect {
|
|||
|
||||
class OliviaCrimsonBrideAbility extends StateTriggeredAbility {
|
||||
|
||||
private static final FilterPermanent filter = new FilterPermanent();
|
||||
private static final FilterPermanent filter = new FilterControlledPermanent();
|
||||
|
||||
static {
|
||||
filter.add(SuperType.LEGENDARY.getPredicate());
|
||||
|
|
Loading…
Reference in a new issue