mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- The Siege cycle cards now visualize their chosen mode in the card detail panel.
This commit is contained in:
@@ -417,6 +417,14 @@ public class CardDetailUtil {
|
||||
area.append("(chosen player: " + card.getChosenPlayer() + ")");
|
||||
}
|
||||
|
||||
// chosen mode
|
||||
if (!card.getChosenMode().equals("")) {
|
||||
if (area.length() != 0) {
|
||||
area.append("\n");
|
||||
}
|
||||
area.append("(chosen mode: " + card.getChosenMode() + ")");
|
||||
}
|
||||
|
||||
// named card
|
||||
if (!card.getNamedCard().equals("")) {
|
||||
if (area.length() != 0) {
|
||||
|
||||
Reference in New Issue
Block a user