mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
fixed Mischievous Chimera (wrong target controller)
This commit is contained in:
parent
4f1fb63dda
commit
8baa80c58f
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ public final class MischievousChimera extends CardImpl {
|
|||
|
||||
// Whenever you cast your first spell during each opponent's turn, Mischievous Chimera deals 1 damage to each opponent. Scry 1.
|
||||
Ability ability = new FirstSpellOpponentsTurnTriggeredAbility(
|
||||
new DamagePlayersEffect(1, TargetController.YOU), false
|
||||
new DamagePlayersEffect(1, TargetController.OPPONENT), false
|
||||
);
|
||||
ability.addEffect(new ScryEffect(1).setText("Scry 1"));
|
||||
this.addAbility(ability);
|
||||
|
|
Loading…
Reference in a new issue