- Display will show what card (if any) was exiled with Isochron Scepter.

This commit is contained in:
jendave
2011-08-06 03:37:21 +00:00
parent 717119f3a2
commit b2b64dfffe

View File

@@ -198,6 +198,17 @@ public class CardDetailPanel extends JPanel implements CardContainer {
area.append("This card can't be cast.");
}
if(card.hasAttachedCards()) {
if (area.length()!= 0) area.append("\n");
Card[] cards = card.getAttachedCards();
area.append("=Attached: ");
for (Card c:cards) {
area.append(c.getName());
area.append(" ");
}
area.append("=");
}
cdArea.setText(area.toString());
}