mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
Angelic Aberration bugfix
This commit is contained in:
parent
29269384bf
commit
91a431f72c
1 changed files with 4 additions and 4 deletions
|
|
@ -17,8 +17,8 @@ import mage.constants.SubType;
|
|||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.Predicates;
|
||||
import mage.filter.predicate.mageobject.PowerPredicate;
|
||||
import mage.filter.predicate.mageobject.ToughnessPredicate;
|
||||
import mage.filter.predicate.mageobject.BasePowerPredicate;
|
||||
import mage.filter.predicate.mageobject.BaseToughnessPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.game.permanent.token.EldraziAngelToken;
|
||||
|
|
@ -70,8 +70,8 @@ class AngelicAberrationEffect extends OneShotEffect {
|
|||
|
||||
static {
|
||||
filter.add(Predicates.or(
|
||||
new PowerPredicate(ComparisonType.OR_LESS, 1),
|
||||
new ToughnessPredicate(ComparisonType.OR_LESS, 1)
|
||||
new BasePowerPredicate(ComparisonType.OR_LESS, 1),
|
||||
new BaseToughnessPredicate(ComparisonType.OR_LESS, 1)
|
||||
));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue