mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Minor changes to table view of active tables.
This commit is contained in:
parent
6d0e276c8f
commit
3645aa6488
1 changed files with 3 additions and 3 deletions
|
@ -118,7 +118,7 @@ public class TableView implements Serializable {
|
||||||
StringBuilder addInfo = new StringBuilder();
|
StringBuilder addInfo = new StringBuilder();
|
||||||
if (table.getMatch().getGames().isEmpty()) {
|
if (table.getMatch().getGames().isEmpty()) {
|
||||||
addInfo.append("Wins:").append(table.getMatch().getWinsNeeded());
|
addInfo.append("Wins:").append(table.getMatch().getWinsNeeded());
|
||||||
addInfo.append(" Timer: ").append(table.getMatch().getOptions().getMatchTimeLimit().toString());
|
addInfo.append(" Time: ").append(table.getMatch().getOptions().getMatchTimeLimit().toString());
|
||||||
if (table.getMatch().getFreeMulligans() > 0) {
|
if (table.getMatch().getFreeMulligans() > 0) {
|
||||||
addInfo.append(" Free Mul.: ").append(table.getMatch().getFreeMulligans());
|
addInfo.append(" Free Mul.: ").append(table.getMatch().getFreeMulligans());
|
||||||
}
|
}
|
||||||
|
@ -151,12 +151,12 @@ public class TableView implements Serializable {
|
||||||
}
|
}
|
||||||
case READY_TO_START:
|
case READY_TO_START:
|
||||||
case STARTING:
|
case STARTING:
|
||||||
infoText.append(" Timer: ").append(table.getTournament().getOptions().getMatchOptions().getMatchTimeLimit().toString());
|
infoText.append(" Time: ").append(table.getTournament().getOptions().getMatchOptions().getMatchTimeLimit().toString());
|
||||||
if (table.getTournament().getOptions().getMatchOptions().getFreeMulligans() > 0) {
|
if (table.getTournament().getOptions().getMatchOptions().getFreeMulligans() > 0) {
|
||||||
infoText.append(" Fr.Mul: ").append(table.getTournament().getOptions().getMatchOptions().getFreeMulligans());
|
infoText.append(" Fr.Mul: ").append(table.getTournament().getOptions().getMatchOptions().getFreeMulligans());
|
||||||
}
|
}
|
||||||
if (table.getTournament().getTournamentType().isLimited()) {
|
if (table.getTournament().getTournamentType().isLimited()) {
|
||||||
infoText.append(" Constr. Time: ").append(table.getTournament().getOptions().getLimitedOptions().getConstructionTime()/60).append(" Min.");
|
infoText.append(" Constr.: ").append(table.getTournament().getOptions().getLimitedOptions().getConstructionTime()/60).append(" Min.");
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case DUELING:
|
case DUELING:
|
||||||
|
|
Loading…
Reference in a new issue