fix windswept_heath.txt missing choice 1, added unearth support without workaround, tweaked alternative cost, added treason/sneak attack ability, added frozen.
This commit is contained in:
@@ -355,9 +355,11 @@ void MTGInPlay::untapAll(){
|
||||
for (i = 0; i < nb_cards; i ++){
|
||||
MTGCardInstance * card = cards[i];
|
||||
card->setUntapping();
|
||||
if (!card->basicAbilities[Constants::DOESNOTUNTAP]){
|
||||
card->attemptUntap();
|
||||
}
|
||||
if (!card->basicAbilities[Constants::DOESNOTUNTAP]){
|
||||
if(card->frozen < 1) {card->attemptUntap();}
|
||||
if(card->frozen >= 1) {card->frozen = 0;}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user