changed GameDecorator.java to show full name of players.

This commit is contained in:
schrom01 2022-05-07 12:17:50 +02:00
parent de728745f6
commit 4d193abb64
1 changed files with 2 additions and 2 deletions

View File

@ -38,14 +38,14 @@ public class GameDecorator {
public String getParticipantOne() {
if (game.getParticipant1() != null) {
return game.getParticipant1().getName();
return game.getParticipant1().toString();
}
return "1";
}
public String getParticipantTwo() {
if (game.getParticipant2() != null) {
return game.getParticipant2().getName();
return game.getParticipant2().toString();
}
return "2";
}