Fixed and improved the Deck Importer (from MTGO) in Android application, fixed frozen and freeze untap bug, fixed/added primitives.

This commit is contained in:
Vittorio Alfieri
2020-12-21 22:39:18 +01:00
parent a801069a3a
commit 1aed1c1517
6 changed files with 223 additions and 123 deletions
+2
View File
@@ -1260,6 +1260,7 @@ void MTGInPlay::untapAll()
if (card->frozen >= 1)
{
card->frozen = 0;
card->resetUntapping(); // Fix to avoid the untap on frozen card by clicking on them after the untap phase.
}
}
else
@@ -1272,6 +1273,7 @@ void MTGInPlay::untapAll()
if (card->frozen >= 1)
{
card->frozen = 0;
card->resetUntapping(); // Fix to avoid the untap on frozen card by clicking on them after the untap phase.
}
}
}