mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fixed Dire Fleet Warmonger granting trample indefinitely (#6646)
This commit is contained in:
parent
20b724bc67
commit
1c41c48d16
1 changed files with 3 additions and 1 deletions
|
@ -37,7 +37,9 @@ public final class DireFleetWarmonger extends CardImpl {
|
|||
new SacrificeTargetCost(new TargetControlledPermanent(
|
||||
StaticFilters.FILTER_CONTROLLED_ANOTHER_CREATURE
|
||||
))
|
||||
).addEffect(new GainAbilitySourceEffect(TrampleAbility.getInstance())), TargetController.YOU, false));
|
||||
).addEffect(new GainAbilitySourceEffect(
|
||||
TrampleAbility.getInstance(), Duration.EndOfTurn
|
||||
)), TargetController.YOU, false));
|
||||
}
|
||||
|
||||
private DireFleetWarmonger(final DireFleetWarmonger card) {
|
||||
|
|
Loading…
Reference in a new issue