mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
[MH2] fixed Arcus Acolyte affecting creatures with +1/+1 counters rather than ones without (fixes #8095)
This commit is contained in:
parent
5d22cc0f06
commit
2ecad7423e
1 changed files with 2 additions and 1 deletions
|
@ -15,6 +15,7 @@ import mage.constants.SubType;
|
|||
import mage.counters.CounterType;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.Predicates;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -27,7 +28,7 @@ public final class ArcusAcolyte extends CardImpl {
|
|||
= new FilterControlledCreaturePermanent("creature you control without a +1/+1 counter on it");
|
||||
|
||||
static {
|
||||
filter.add(CounterType.P1P1.getPredicate());
|
||||
filter.add(Predicates.not(CounterType.P1P1.getPredicate()));
|
||||
}
|
||||
|
||||
public ArcusAcolyte(UUID ownerId, CardSetInfo setInfo) {
|
||||
|
|
Loading…
Reference in a new issue