- fixed compilation issues
- fixed bug with persuasion
This commit is contained in:
wagic.the.homebrew
2009-03-18 10:39:38 +00:00
parent bc7c689eab
commit 070e24ec7a
6 changed files with 9 additions and 22 deletions

View File

@@ -201,7 +201,7 @@ int MTGCardInstance::hasSummoningSickness(){
int MTGCardInstance::changeController(Player * newController){
Player * originalOwner = controller();
if (originalOwner == newController) return 0;
MTGCardInstance * copy = originalOwner->game->inPlay->removeCard(this);
MTGCardInstance * copy = originalOwner->game->inPlay->removeCard(this,0);
newController->game->inPlay->addCard(copy);
//summoningSickness = 1;
return 1;