Fixed syntax error of Opposition.

This commit is contained in:
LevelX2 2014-01-14 08:43:58 +01:00
parent 943cad9227
commit 1c5f0c8b7f

View file

@ -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) {