Simulation: fix for Pack Rat tokens (bad diff because of missing CMC)

This commit is contained in:
tool4EvEr
2021-12-26 12:45:28 +01:00
parent ee2aef95da
commit c1d796754a

View File

@@ -233,6 +233,9 @@ public class GameCopier {
if (card.isPaired()) { if (card.isPaired()) {
otherCard.setPairedWith(cardMap.get(card.getPairedWith())); otherCard.setPairedWith(cardMap.get(card.getPairedWith()));
} }
if (card.getCopiedPermanent() != null) {
otherCard.setCopiedPermanent(CardFactory.copyCard(card.getCopiedPermanent(), false));
}
// TODO: Verify that the above relationships are preserved bi-directionally or not. // TODO: Verify that the above relationships are preserved bi-directionally or not.
} }
} }