mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
Added a "-" sign between the player names in the tournament match view.
This commit is contained in:
parent
d4e12b2fea
commit
a76d3ac16e
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ public class TournamentGameView implements Serializable {
|
|||
this.roundNum = roundNum;
|
||||
this.matchId = pair.getMatch().getId();
|
||||
this.gameId = game.getId();
|
||||
this.players = pair.getPlayer1().getPlayer().getName() + " " + pair.getPlayer2().getPlayer().getName();
|
||||
this.players = pair.getPlayer1().getPlayer().getName() + " - " + pair.getPlayer2().getPlayer().getName();
|
||||
if (game.isGameOver()) {
|
||||
this.state = "Finished";
|
||||
this.result = game.getWinner();
|
||||
|
|
Loading…
Reference in a new issue