Fixed card texts: instant or sorcery spell;

This commit is contained in:
Oleg Agafonov 2019-01-05 00:46:53 +04:00
parent a4eecbfb78
commit 207e95e001
14 changed files with 59 additions and 67 deletions

View file

@ -477,7 +477,7 @@ public final class StaticFilters {
FILTER_SPELL_AN_INSTANT_OR_SORCERY.setLockedFilter(true);
}
public static final FilterSpell FILTER_SPELL_INSTANT_OR_SORCERY = new FilterSpell("an instant or sorcery spell");
public static final FilterSpell FILTER_SPELL_INSTANT_OR_SORCERY = new FilterSpell("instant or sorcery spell");
static {
FILTER_SPELL_INSTANT_OR_SORCERY.add(Predicates.or(

View file

@ -17,7 +17,7 @@ public final class WillKenrithEmblem extends Emblem {
this.getAbilities().add(new SpellCastControllerTriggeredAbility(
Zone.COMMAND,
new CopyTargetSpellEffect(true).withSpellName("it"),
StaticFilters.FILTER_SPELL_INSTANT_OR_SORCERY,
StaticFilters.FILTER_SPELL_AN_INSTANT_OR_SORCERY,
false,
true
));