[C21] fixed Breena, the Demagogue putting counters on itself (fixes #7809)

This commit is contained in:
Evan Kranzler 2021-05-07 13:09:30 -04:00
parent 690d640a05
commit 146f877047

View file

@ -132,7 +132,7 @@ class BreenaTheDemagogueEffect extends OneShotEffect {
TargetPermanent target = new TargetControlledCreaturePermanent();
target.setNotTarget(true);
player.choose(outcome, target, source.getSourceId(), game);
Permanent permanent = game.getPermanent(source.getSourceId());
Permanent permanent = game.getPermanent(target.getFirstTarget());
return permanent != null && permanent.addCounters(
CounterType.P1P1.createInstance(2),
source.getControllerId(), source, game