Reflection of Kiki-Jiki token being sacrificed incorrectly for #8742 (#8743)

Reflection of Kiki-Jiki tokens were being sacrificed even if not under the control of Reflection of Kiki-Jiki controller.
This commit is contained in:
Grath 2022-05-13 16:56:47 -04:00 committed by GitHub
parent e15db2b9b4
commit ac2eb9056d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 52 additions and 1 deletions

View file

@ -375,7 +375,7 @@ public class CreateTokenCopyTargetEffect extends OneShotEffect {
if (exile) {
effect = new ExileTargetEffect(null, "", Zone.BATTLEFIELD).setText("exile the token copies");
} else {
effect = new SacrificeTargetEffect("sacrifice the token copies");
effect = new SacrificeTargetEffect("sacrifice the token copies", source.getControllerId());
}
effect.setTargetPointer(new FixedTargets(addedTokenPermanents, game));