mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
fixed two small refactor errors
This commit is contained in:
parent
8876d39491
commit
29efa7b067
3 changed files with 25 additions and 25 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue