Fixed Legend rule for mutating cards, avoided spell targeting for mutated down cards, added new primitives.

This commit is contained in:
valfieri
2020-06-14 14:03:00 +02:00
parent 2b398b425d
commit 587155353c
6 changed files with 128 additions and 76 deletions

View File

@@ -1035,6 +1035,12 @@ void GameObserver::gameStateBasedEffects()
MTGCardInstance * card = f->cards[k];
card->fresh = 0;
}
MTGGameZone * fe = p->game->exile;
for (int k = 0; k < fe->nb_cards; k++)
{
MTGCardInstance * card = fe->cards[k]; // Remove fresh attribute to previous exiled cards
card->fresh = 0;
}
}
if (z->nb_cards == 0)
{