mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 03:08:02 +00:00
Simulation: fix for Pack Rat tokens (bad diff because of missing CMC)
This commit is contained in:
@@ -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.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user