Merge pull request #13478 from im-inuenc/angelic-aberration-bugfix

Fix Angelic Aberration
This commit is contained in:
Grath 2025-03-27 21:39:27 -04:00 committed by GitHub
commit 8c6ea0dcf0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)
));
}