mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 11:02:00 -08: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.roundNum = roundNum;
|
||||||
this.matchId = pair.getMatch().getId();
|
this.matchId = pair.getMatch().getId();
|
||||||
this.gameId = game.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()) {
|
if (game.isGameOver()) {
|
||||||
this.state = "Finished";
|
this.state = "Finished";
|
||||||
this.result = game.getWinner();
|
this.result = game.getWinner();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue