fixed Mischievous Chimera (wrong target controller)

This commit is contained in:
Oleg Agafonov 2020-01-11 09:52:51 +04:00
parent 4f1fb63dda
commit 8baa80c58f

View file

@ -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);