* Karn Liberated - fixed that after using its -14 ability the game does not properly set the starting player of the new game (fixes #3786).

This commit is contained in:
LevelX2 2017-08-10 07:04:32 +02:00
parent 3a52ce609d
commit a3e7aa6230
3 changed files with 51 additions and 35 deletions

View file

@ -157,6 +157,7 @@ class KarnLiberatedEffect extends OneShotEffect {
}
}
game.addDelayedTriggeredAbility(new KarnLiberatedDelayedTriggeredAbility(exileId), source);
game.setStartingPlayerId(source.getControllerId());
game.start(null);
return true;
}