[SLD] fixed Chun-Li, Countless Kicks casting spells for free (fixes #8869)

This commit is contained in:
Evan Kranzler 2022-04-21 19:38:03 -04:00
parent 2f88b0aa58
commit f00aa4b298

View file

@ -142,8 +142,8 @@ class ChunLiCountlessKicksCastEffect extends OneShotEffect {
if (copiedCard.getSpellAbility() != null) {
game.getState().setValue("PlayFromNotOwnHandZone" + copiedCard.getId(), Boolean.TRUE);
player.cast(
player.chooseAbilityForCast(copiedCard, game, true),
game, true, new ApprovingObject(source, game)
player.chooseAbilityForCast(copiedCard, game, false),
game, false, new ApprovingObject(source, game)
);
game.getState().setValue("PlayFromNotOwnHandZone" + copiedCard.getId(), null);
} else {