mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Fix Lae'zel's Acrobatics
This commit is contained in:
parent
8c83f60e1b
commit
c45c1e12b6
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.cards.Cards;
|
import mage.cards.Cards;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.filter.common.FilterCreaturePermanent;
|
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.permanent.Permanent;
|
import mage.game.permanent.Permanent;
|
||||||
import mage.filter.predicate.permanent.TokenPredicate;
|
import mage.filter.predicate.permanent.TokenPredicate;
|
||||||
|
@ -70,7 +70,7 @@ class LaezelsAcrobaticsEffect extends RollDieWithResultTableEffect {
|
||||||
return new LaezelsAcrobaticsEffect(this);
|
return new LaezelsAcrobaticsEffect(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final FilterCreaturePermanent creatureFilter = new FilterCreaturePermanent();
|
private static final FilterControlledCreaturePermanent creatureFilter = new FilterControlledCreaturePermanent();
|
||||||
|
|
||||||
static {
|
static {
|
||||||
creatureFilter.add(TokenPredicate.FALSE);
|
creatureFilter.add(TokenPredicate.FALSE);
|
||||||
|
|
Loading…
Reference in a new issue