mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 10:18:01 +00:00
add Exiled list to Card Detail
This commit is contained in:
@@ -560,6 +560,15 @@ public class CardDetailUtil {
|
|||||||
area.append(StringUtils.join(card.getImprintedCards(), ", "));
|
area.append(StringUtils.join(card.getImprintedCards(), ", "));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// CardsExiledBy
|
||||||
|
if (card.getExiledCards() != null) {
|
||||||
|
if (area.length() != 0) {
|
||||||
|
area.append("\n");
|
||||||
|
}
|
||||||
|
area.append("Exiled: ");
|
||||||
|
area.append(StringUtils.join(card.getExiledCards(), ", "));
|
||||||
|
}
|
||||||
|
|
||||||
// Haunt
|
// Haunt
|
||||||
if (card.getHauntedBy() != null) {
|
if (card.getHauntedBy() != null) {
|
||||||
if (area.length() != 0) {
|
if (area.length() != 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user