mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
572b4cf025
1 changed files with 8 additions and 3 deletions
|
@ -333,9 +333,14 @@ public class GameController implements GameCallback {
|
||||||
// TODO: workaround to fix not started games in tourneys, need to find out real reason
|
// TODO: workaround to fix not started games in tourneys, need to find out real reason
|
||||||
if (gameSessions.get(player.getId()) == null) {
|
if (gameSessions.get(player.getId()) == null) {
|
||||||
// join the game because player has not joined are was removed because of disconnect
|
// join the game because player has not joined are was removed because of disconnect
|
||||||
user.removeConstructing(player.getId());
|
if (user.isConnected()) {
|
||||||
GameManager.instance.joinGame(game.getId(), user.getId());
|
user.ccGameStarted(game.getId(), player.getId());
|
||||||
logger.warn("Forced join of player " + player.getName() + " (" + user.getUserState() + ") to gameId: " + game.getId());
|
logger.warn("Player " + player.getName() + " (missed message) has joined gameId: " + game.getId());
|
||||||
|
} else {
|
||||||
|
user.removeConstructing(player.getId());
|
||||||
|
GameManager.instance.joinGame(game.getId(), user.getId());
|
||||||
|
logger.warn("Forced join of player " + player.getName() + " (" + user.getUserState() + ") to gameId: " + game.getId());
|
||||||
|
}
|
||||||
ChatManager.instance.broadcast(chatId, player.getName(), user.getPingInfo()
|
ChatManager.instance.broadcast(chatId, player.getName(), user.getPingInfo()
|
||||||
+ " is forced to join the game (waiting ends after "
|
+ " is forced to join the game (waiting ends after "
|
||||||
+ GAME_TIMEOUTS_CANCEL_PLAYER_GAME_JOINING_AFTER_INACTIVE_SECS + " secs)",
|
+ GAME_TIMEOUTS_CANCEL_PLAYER_GAME_JOINING_AFTER_INACTIVE_SECS + " secs)",
|
||||||
|
|
Loading…
Reference in a new issue