mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 20:11:59 -08: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…
Add table
Add a link
Reference in a new issue