Skip to content

Commit

Permalink
Fix summoning sickness
Browse files Browse the repository at this point in the history
Cards like control magic (using alias=1194) always resets the summoning sickness, commenting this solves the problem...
  • Loading branch information
kevlahnota committed May 28, 2016
1 parent 8a374f5 commit 18430dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/mtg/src/MTGCardInstance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ MTGCardInstance * MTGCardInstance::changeController(Player * newController,bool
}
Player * originalOwner = controller();
MTGCardInstance * copy = originalOwner->game->putInZone(this, this->currentZone, newController->game->inPlay);
copy->summoningSickness = 1;
//copy->summoningSickness = 1;
return copy;
}

Expand Down

0 comments on commit 18430dc

Please sign in to comment.