mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fixed Captive Audience not entering the battlefield under the chosen player's control
This commit is contained in:
parent
b8fbf1bc8e
commit
bfc3e965eb
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ class CaptiveAudienceETBEffect extends OneShotEffect {
|
|||
Duration.WhileOnBattlefield, true, player.getId()
|
||||
);
|
||||
continuousEffect.setTargetPointer(
|
||||
new FixedTarget(source.getSourceId(), source.getSourceObjectZoneChangeCounter() + 1)
|
||||
new FixedTarget(source.getSourceId(), source.getSourceObjectZoneChangeCounter())
|
||||
);
|
||||
game.addEffect(continuousEffect, source);
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue