From 3e0a92fed8b940847877d30745ab3559f49eebdb Mon Sep 17 00:00:00 2001 From: dilnu Date: Sat, 4 Aug 2018 22:42:22 -0400 Subject: [PATCH] Fix a typo --- Mage.Sets/src/mage/cards/a/AnimarSoulOfElements.java | 3 +-- Mage/src/main/java/mage/abilities/SpellAbility.java | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/a/AnimarSoulOfElements.java b/Mage.Sets/src/mage/cards/a/AnimarSoulOfElements.java index c6bcf721ec..f7291fa112 100644 --- a/Mage.Sets/src/mage/cards/a/AnimarSoulOfElements.java +++ b/Mage.Sets/src/mage/cards/a/AnimarSoulOfElements.java @@ -19,7 +19,6 @@ import mage.counters.CounterType; import mage.filter.StaticFilters; import mage.game.Game; import mage.game.permanent.Permanent; -import mage.game.stack.Spell; import mage.util.CardUtil; /** @@ -86,7 +85,7 @@ class AnimarCostReductionEffect extends CostModificationEffectImpl { public boolean applies(Ability abilityToModify, Ability source, Game game) { if (abilityToModify instanceof SpellAbility) { if (abilityToModify.isControlledBy(source.getControllerId())) { - Card spell = ((SpellAbility) abilityToModify).getCharachteristics(game); + Card spell = ((SpellAbility) abilityToModify).getCharacteristics(game); if (spell != null) { return spell.isCreature(); } diff --git a/Mage/src/main/java/mage/abilities/SpellAbility.java b/Mage/src/main/java/mage/abilities/SpellAbility.java index 83f63ce5f8..201d2deb34 100644 --- a/Mage/src/main/java/mage/abilities/SpellAbility.java +++ b/Mage/src/main/java/mage/abilities/SpellAbility.java @@ -212,7 +212,7 @@ public class SpellAbility extends ActivatedAbilityImpl { return this; } - public Card getCharachteristics(Game game) { + public Card getCharacteristics(Game game) { Spell spell = game.getSpell(this.getId()); if (spell != null) { return spell;