for cards like Clone and friends, the picture on the battlefield will now be the original Clone images (but the overlay and info in CardDetailPanel will be for the cloned target). I think this is a fairly intuitive way to handle it, and it mimics what you would see during an in-person match.

This commit is contained in:
slapshot5
2012-01-23 04:50:05 +00:00
parent 027e56bde0
commit 58a2f46937

View File

@@ -2131,6 +2131,8 @@ public class CardFactoryCreatures {
@Override
public void resolve() {
String imageFileName = card.getImageFilename();
if (card.getController().isComputer()) {
final CardList creatures = AllZoneUtil.getCreaturesInPlay();
if (!creatures.isEmpty()) {
@@ -2184,6 +2186,8 @@ public class CardFactoryCreatures {
}
//keep the Clone card image for the cloned card
card.setImageFilename(imageFileName);
AllZone.getGameAction().moveToPlay(card);
}