mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
CardDetailUtil: add output of ChosenCard in the CardView
This commit is contained in:
@@ -388,6 +388,16 @@ public class CardDetailUtil {
|
|||||||
area.append(")");
|
area.append(")");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// chosen cards
|
||||||
|
if (card.getChosenCards() != null) {
|
||||||
|
if (area.length() != 0) {
|
||||||
|
area.append("\n");
|
||||||
|
}
|
||||||
|
area.append("(chosen cards: ");
|
||||||
|
area.append(Lang.joinHomogenous(card.getChosenCards()));
|
||||||
|
area.append(")");
|
||||||
|
}
|
||||||
|
|
||||||
// chosen player
|
// chosen player
|
||||||
if (card.getChosenPlayer() != null) {
|
if (card.getChosenPlayer() != null) {
|
||||||
if (area.length() != 0) {
|
if (area.length() != 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user