Fix date in Dat files, Added IKO and HA3 sets, updated the manifest and build files, Added SD card support for Android, Fix the Android app crash when resuming from background, Improved Android downloader, added finger sliding popup menu for Android devices without sidebar menu, fixed several crashes during game, added the mutating card ability, fixed the adventure card ability, added new borderline primitives.
This commit is contained in:
@@ -788,7 +788,7 @@ void GameObserver::gameStateBasedEffects()
|
||||
else if((!card->target->isLand() && card->hasType("fortification")))
|
||||
((AEquip*)a)->unequip();
|
||||
}
|
||||
if(card->controller())
|
||||
if(card->controller() && !card->mutation)
|
||||
((AEquip*)a)->getActionTc()->Owner = card->controller();
|
||||
//fix for equip ability when the equipment changed controller...
|
||||
}
|
||||
@@ -1406,9 +1406,9 @@ bool GameObserver::WaitForExtraPayment(MTGCardInstance * card)
|
||||
mExtraPayment = NULL;
|
||||
}
|
||||
result = true;
|
||||
// Avoid game stucks on current phase till snow mana cost will be paid
|
||||
if(mExtraPayment && mExtraPayment->costs.size() == 1 && !strcmp(mExtraPayment->costs[0]->mCostRenderString.c_str(), "Snow Mana"))
|
||||
result = false;
|
||||
// Avoid game stucks on current phase till snow mana cost will be paid
|
||||
if(mExtraPayment && mExtraPayment->costs.size() == 1 && !strcmp(mExtraPayment->costs[0]->mCostRenderString.c_str(), "Snow Mana"))
|
||||
result = false;
|
||||
}
|
||||
|
||||
return result;
|
||||
|
||||
Reference in New Issue
Block a user