- The Siege cycle cards now visualize their chosen mode in the card detail panel.

This commit is contained in:
Agetian
2017-06-12 13:20:21 +00:00
parent de837d66f9
commit ea65d1de4d
10 changed files with 33 additions and 5 deletions

View File

@@ -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) {