Added new keyword to count creature of the same type with both unique and common names, added/fixed primitives form M19 set.

Added new keyword to count creature of the same type with both unique and common names, added/fixed primitives form M19 set.
Added new keyword to count creature of the same type with both unique and common names, added/fixed primitives form M19 set.
Added new keyword to count creature of the same type with both unique and common names, added/fixed primitives form M19 set.
Added new keyword to count creature of the same type with both unique and common names, added/fixed primitives form M19 set.
This commit is contained in:
valfieri
2020-12-16 18:05:29 +01:00
parent 3e7ef8c77c
commit 0d2e4af2a3
4 changed files with 247 additions and 19 deletions
+1 -1
View File
@@ -385,7 +385,7 @@ void MTGPlayerCards::showHand()
// Moves a card to its owner's graveyard
MTGCardInstance * MTGPlayerCards::putInGraveyard(MTGCardInstance * card)
{
if (card->getCurrentZone() != card->controller()->game->hand && card->basicAbilities[(int)Constants::EXILEDEATH])
if (card->getCurrentZone() != card->controller()->game->hand && card->basicAbilities[(int)Constants::EXILEDEATH])
{
return putInZone(card, card->getCurrentZone(), card->owner->game->exile);
}