mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
fixed Heroic Reinforcements giving haste to noncreature permanents
This commit is contained in:
parent
91d099db5c
commit
711c34b34f
1 changed files with 3 additions and 1 deletions
|
@ -9,6 +9,7 @@ import mage.cards.CardImpl;
|
|||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.permanent.token.SoldierToken;
|
||||
|
||||
/**
|
||||
|
@ -30,7 +31,8 @@ public final class HeroicReinforcements extends CardImpl {
|
|||
this.getSpellAbility().addEffect(
|
||||
new GainAbilityControlledEffect(
|
||||
HasteAbility.getInstance(),
|
||||
Duration.EndOfTurn
|
||||
Duration.EndOfTurn,
|
||||
StaticFilters.FILTER_CONTROLLED_CREATURE
|
||||
).setText("and gain haste")
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue