mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
* Trial of Ambition - Fixed typo in "sacrifices a creature" effect (fixes #6913).
This commit is contained in:
parent
1ed9c09266
commit
2fb8f627c2
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ public final class TrialOfAmbition extends CardImpl {
|
|||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{B}");
|
||||
|
||||
// When Trial of Ambition enters the battlefield, target opponent sacrifices a creature.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new SacrificeEffect(StaticFilters.FILTER_PERMANENT_CREATURES, 1, "target opponent"));
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new SacrificeEffect(StaticFilters.FILTER_PERMANENT_CREATURE_A, 1, "target opponent"));
|
||||
ability.addTarget(new TargetOpponent());
|
||||
this.addAbility(ability);
|
||||
|
||||
|
|
Loading…
Reference in a new issue