mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
Fixed Karn's third ability to restart the game including during the game copied cards.
This commit is contained in:
parent
0af121c3e4
commit
86202166db
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ class KarnLiberatedEffect extends OneShotEffect<KarnLiberatedEffect> {
|
|||
player.getHand().clear();
|
||||
player.getLibrary().clear();
|
||||
for (Card card: game.getCards()) {
|
||||
if (card.getOwnerId().equals(player.getId())) {
|
||||
if (card.getOwnerId().equals(player.getId()) && !card.isCopy()) {
|
||||
player.getLibrary().putOnTop(card, game);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue