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:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user