Fixed FilterCreaturePermanent

This commit is contained in:
Plopman 2013-06-29 16:24:44 +02:00
parent 969feb1387
commit 62fa1d3b31

View file

@ -48,7 +48,7 @@ public class FilterCreaturePermanent extends FilterPermanent {
this.add(new CardTypePredicate(CardType.CREATURE));
}
public FilterCreaturePermanent(String name, String subtype) {
public FilterCreaturePermanent(String subtype, String name) {
super(name);
this.add(new CardTypePredicate(CardType.CREATURE));
this.add(new SubtypePredicate(subtype));