mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[SLD] fixed Chun-Li, Countless Kicks casting spells for free (fixes #8869)
This commit is contained in:
parent
2f88b0aa58
commit
f00aa4b298
1 changed files with 2 additions and 2 deletions
|
@ -142,8 +142,8 @@ class ChunLiCountlessKicksCastEffect extends OneShotEffect {
|
||||||
if (copiedCard.getSpellAbility() != null) {
|
if (copiedCard.getSpellAbility() != null) {
|
||||||
game.getState().setValue("PlayFromNotOwnHandZone" + copiedCard.getId(), Boolean.TRUE);
|
game.getState().setValue("PlayFromNotOwnHandZone" + copiedCard.getId(), Boolean.TRUE);
|
||||||
player.cast(
|
player.cast(
|
||||||
player.chooseAbilityForCast(copiedCard, game, true),
|
player.chooseAbilityForCast(copiedCard, game, false),
|
||||||
game, true, new ApprovingObject(source, game)
|
game, false, new ApprovingObject(source, game)
|
||||||
);
|
);
|
||||||
game.getState().setValue("PlayFromNotOwnHandZone" + copiedCard.getId(), null);
|
game.getState().setValue("PlayFromNotOwnHandZone" + copiedCard.getId(), null);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue