This commit is contained in:
BetaSteward 2011-10-04 12:26:34 -04:00
parent d63919d8e3
commit 2764a4c25a
3 changed files with 3 additions and 5 deletions

View file

@ -38,7 +38,6 @@ import mage.abilities.Ability;
import mage.abilities.common.SimpleActivatedAbility;
import mage.abilities.costs.common.TapSourceCost;
import mage.abilities.effects.PreventionEffectImpl;
import mage.abilities.effects.common.PreventAllCombatDamageEffect;
import mage.abilities.effects.common.PreventDamageTargetEffect;
import mage.cards.CardImpl;
import mage.filter.Filter;
@ -94,7 +93,7 @@ class KitsuneHealerEffect extends PreventionEffectImpl<KitsuneHealerEffect> {
staticText = "Prevent all damage that would be dealt to target legendary creature this turn";
}
public KitsuneHealerEffect(final PreventAllCombatDamageEffect effect) {
public KitsuneHealerEffect(final KitsuneHealerEffect effect) {
super(effect);
}

View file

@ -38,7 +38,6 @@ import mage.abilities.common.SimpleActivatedAbility;
import mage.abilities.costs.common.TapSourceCost;
import mage.abilities.costs.mana.ManaCostsImpl;
import mage.abilities.effects.PreventionEffectImpl;
import mage.abilities.effects.common.PreventAllCombatDamageEffect;
import mage.cards.CardImpl;
import mage.filter.Filter.ComparisonType;
import mage.filter.common.FilterCreaturePermanent;
@ -94,7 +93,7 @@ class GodtoucherEffect extends PreventionEffectImpl<GodtoucherEffect> {
staticText = "Prevent all damage that would be dealt to target creature with power 5 or greater this turn";
}
public GodtoucherEffect(final PreventAllCombatDamageEffect effect) {
public GodtoucherEffect(final GodtoucherEffect effect) {
super(effect);
}

View file

@ -5,7 +5,7 @@ import mage.counters.Counter;
/**
* @author Loki
*/
public class HoofprintCounter extends Counter<FeatherCounter> {
public class HoofprintCounter extends Counter<HoofprintCounter> {
public HoofprintCounter() {
super("Hoofprint");