[FIC] fix Bugenhagen, Wise Elder condition

This commit is contained in:
theelk801 2025-11-30 18:49:19 -05:00
parent 9d9896bd4c
commit 7f4f6eab62

View file

@ -30,7 +30,7 @@ public final class BugenhagenWiseElder extends CardImpl {
= new FilterControlledCreaturePermanent("you control a creature with power 7 or greater"); = new FilterControlledCreaturePermanent("you control a creature with power 7 or greater");
static { static {
filter.add(new PowerPredicate(ComparisonType.MORE_THAN, 7)); filter.add(new PowerPredicate(ComparisonType.OR_GREATER, 7));
} }
private static final Condition condition = new PermanentsOnTheBattlefieldCondition(filter); private static final Condition condition = new PermanentsOnTheBattlefieldCondition(filter);