mirror of
https://github.com/correl/mage.git
synced 2024-12-25 19:25:41 +00:00
[KHM] fixed Doomskar Titan giving noncreature permanents haste
This commit is contained in:
parent
ec888cb21c
commit
9d84a22412
1 changed files with 3 additions and 1 deletions
|
@ -12,6 +12,7 @@ import mage.cards.CardSetInfo;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.StaticFilters;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -34,7 +35,8 @@ public final class DoomskarTitan extends CardImpl {
|
|||
.setText("creatures you control get +1/+0")
|
||||
);
|
||||
ability.addEffect(new GainAbilityControlledEffect(
|
||||
HasteAbility.getInstance(), Duration.EndOfTurn
|
||||
HasteAbility.getInstance(), Duration.EndOfTurn,
|
||||
StaticFilters.FILTER_PERMANENT_CREATURE
|
||||
).setText("and gain haste until end of turn"));
|
||||
this.addAbility(ability);
|
||||
|
||||
|
|
Loading…
Reference in a new issue