* Game: improved fix command (more info and fixes);

* Game: improved game startup message (more info about private messages and players stats);
This commit is contained in:
Oleg Agafonov 2020-02-21 12:10:54 +04:00
parent b59c8b663d
commit 58d7a96031
4 changed files with 119 additions and 63 deletions

View file

@ -232,7 +232,7 @@ public enum ChatManager {
if (entry.getKey().equals(id)) {
GameController controller = entry.getValue();
if (controller != null) {
message += controller.attemptToFixGame();
message += controller.attemptToFixGame(user);
chatSessions.get(chatId).broadcastInfoToUser(user, message);
}
}