#8734: Fix Reflection of Kiki-Jiki sacrifice trigger to trigger at next end step instead of end of combat (#8735)

This commit is contained in:
Jackie Ng 2022-03-03 02:21:38 +11:00 committed by GitHub
parent b7da79ed73
commit 93cc71f40c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -85,7 +85,7 @@ class ReflectionOfKikiJikiEffect extends OneShotEffect {
CreateTokenCopyTargetEffect effect = new CreateTokenCopyTargetEffect(null, null, true);
effect.setTargetPointer(new FixedTarget(source.getFirstTarget(), game));
effect.apply(game, source);
effect.sacrificeTokensCreatedAtEndOfCombat(game, source);
effect.sacrificeTokensCreatedAtNextEndStep(game, source);
return true;
}
}