mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fixed FilterCreaturePermanent
This commit is contained in:
parent
969feb1387
commit
62fa1d3b31
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue