mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Fixed syntax error of Opposition.
This commit is contained in:
parent
943cad9227
commit
1c5f0c8b7f
1 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ public class Opposition extends CardImpl<Opposition> {
|
||||||
private static final FilterPermanent artifactcreatureorland = new FilterPermanent("artifact, creature, or land");
|
private static final FilterPermanent artifactcreatureorland = new FilterPermanent("artifact, creature, or land");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(Predicates.or(
|
artifactcreatureorland.add(Predicates.or(
|
||||||
new CardTypePredicate(CardType.ARTIFACT),
|
new CardTypePredicate(CardType.ARTIFACT),
|
||||||
new CardTypePredicate(CardType.CREATURE),
|
new CardTypePredicate(CardType.CREATURE),
|
||||||
new CardTypePredicate(CardType.LAND)));
|
new CardTypePredicate(CardType.LAND)));
|
||||||
|
@ -63,7 +63,7 @@ public class Opposition extends CardImpl<Opposition> {
|
||||||
private static final FilterControlledCreaturePermanent untappedcreatureyoucontrol = new FilterControlledCreaturePermanent("untapped creature you control");
|
private static final FilterControlledCreaturePermanent untappedcreatureyoucontrol = new FilterControlledCreaturePermanent("untapped creature you control");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(Predicates.not(new TappedPredicate()));
|
untappedcreatureyoucontrol.add(Predicates.not(new TappedPredicate()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public Opposition(UUID ownerId) {
|
public Opposition(UUID ownerId) {
|
||||||
|
|
Loading…
Reference in a new issue