mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[C21] fixed Breena, the Demagogue putting counters on itself (fixes #7809)
This commit is contained in:
parent
690d640a05
commit
146f877047
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue