fixed two small refactor errors

This commit is contained in:
Evan Kranzler 2020-09-12 20:56:46 -04:00
parent 8876d39491
commit 29efa7b067
3 changed files with 25 additions and 25 deletions

View file

@ -20,7 +20,7 @@ public final class Hindervines extends CardImpl {
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creatures with no +1/+1 counters on them");
static {
filter.add(Predicates.not(CounterType.P1P1).getPredicate());
filter.add(Predicates.not(CounterType.P1P1.getPredicate()));
}
public Hindervines(UUID ownerId, CardSetInfo setInfo) {

View file

@ -39,7 +39,7 @@ public final class ObsidianFireheart extends CardImpl {
private static final FilterLandPermanent filter = new FilterLandPermanent("land without a blaze counter on it");
static {
filter.add(Predicates.not(CounterType.BLAZE).getPredicate());
filter.add(Predicates.not(CounterType.BLAZE.getPredicate()));
}
public ObsidianFireheart(UUID ownerId, CardSetInfo setInfo) {