mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 18:28: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.");
|
||||
}
|
||||
|
||||
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());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user