Show match time value in table view.

This commit is contained in:
LevelX2 2013-07-02 17:02:03 +02:00
parent a71285a768
commit 35433e55b8
3 changed files with 14 additions and 5 deletions

View file

@ -91,7 +91,7 @@ public class TableView implements Serializable {
this.controllerName += sb.toString();
this.deckType = table.getDeckType();
if (table.getMatch().getGames().isEmpty()) {
this.additionalInfo = "";
this.additionalInfo = new StringBuilder("Timer: ").append(table.getMatch().getOptions().getMatchTimeLimit().toString()).toString();
} else {
this.additionalInfo = sbScore.toString();
}