Fix summoning sickness

Cards like control magic (using alias=1194) always resets the summoning sickness, commenting this solves the problem...
This commit is contained in:
Anthony Calosa
2016-05-28 13:47:03 +08:00
parent 8a374f53bc
commit 18430dca25
+1 -1
View File
@@ -573,7 +573,7 @@ MTGCardInstance * MTGCardInstance::changeController(Player * newController,bool
} }
Player * originalOwner = controller(); Player * originalOwner = controller();
MTGCardInstance * copy = originalOwner->game->putInZone(this, this->currentZone, newController->game->inPlay); MTGCardInstance * copy = originalOwner->game->putInZone(this, this->currentZone, newController->game->inPlay);
copy->summoningSickness = 1; //copy->summoningSickness = 1;
return copy; return copy;
} }