mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08:00
* Eye of the Storm - Fixed possible endless loop if player quits game.
This commit is contained in:
parent
949897632d
commit
014c93e05e
1 changed files with 5 additions and 5 deletions
|
|
@ -178,7 +178,7 @@ class EyeOfTheStormEffect1 extends OneShotEffect {
|
|||
}
|
||||
|
||||
boolean continueCasting = true;
|
||||
while (continueCasting) {
|
||||
while (spellController.isInGame() && continueCasting) {
|
||||
continueCasting = copiedCards.size() > 1 && spellController.chooseUse(outcome, "Cast one of the copied cards without paying its mana cost?", source, game);
|
||||
|
||||
Card cardToCopy;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue