Added a "-" sign between the player names in the tournament match view.

This commit is contained in:
LevelX2 2013-03-26 15:34:39 +01:00
parent d4e12b2fea
commit a76d3ac16e

View file

@ -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();