mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
- Fixed #6241
This commit is contained in:
parent
b708494647
commit
d7f300a06d
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ class ChaosWandEffect extends OneShotEffect {
|
|||
opponent.moveCards(card, Zone.EXILED, source, game);
|
||||
controller.revealCards(source, new CardsImpl(card), game);
|
||||
if (card.isInstant() || card.isSorcery()) {
|
||||
if (!controller.chooseUse(Outcome.PlayForFree, "Cast " + card.getName()
|
||||
if (controller.chooseUse(Outcome.PlayForFree, "Cast " + card.getName()
|
||||
+ " without paying its mana cost?", source, game)) {
|
||||
game.getState().setValue("PlayFromNotOwnHandZone" + card.getId(), Boolean.TRUE);
|
||||
Boolean cardWasCast = controller.cast(controller.chooseAbilityForCast(card, game, true),
|
||||
|
|
Loading…
Reference in a new issue