FIXED a bug where Worthy Knight was only creating tokens if the spell was a human spell.

This commit is contained in:
Matthaios Tsiridis 2019-09-15 17:55:17 +03:00
parent 7d05f8a1d8
commit 29faab73d1

View file

@ -21,7 +21,7 @@ public final class WorthyKnight extends CardImpl {
private static final FilterSpell filter = new FilterSpell("a Knight spell");
static {
filter.add(new SubtypePredicate(SubType.HUMAN));
filter.add(new SubtypePredicate(SubType.KNIGHT));
}
public WorthyKnight(UUID ownerId, CardSetInfo setInfo) {