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

View File

@@ -636,6 +636,11 @@ void MTGCardInstance::setUntapping()
untapping = 1;
}
void MTGCardInstance::resetUntapping()
{
untapping = 0; // Fix to avoid the untap on frozen card by clicking on them after the untap phase.
}
int MTGCardInstance::isUntapping()
{
return untapping;