mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 10:48:00 +00:00
- Display will show what card (if any) was exiled with Isochron Scepter.
This commit is contained in:
@@ -198,6 +198,17 @@ public class CardDetailPanel extends JPanel implements CardContainer {
|
|||||||
area.append("This card can't be cast.");
|
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());
|
cdArea.setText(area.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user