From 45159969594bccf3dbaba5d99798b6265d507430 Mon Sep 17 00:00:00 2001 From: lotodore Date: Sat, 3 Jan 2009 20:40:14 +0000 Subject: [PATCH] Yet another (important) network game fix. Last fix was not sufficient. --- src/net/common/serverlobbythread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/common/serverlobbythread.cpp b/src/net/common/serverlobbythread.cpp index 509ba627..9d45b515 100644 --- a/src/net/common/serverlobbythread.cpp +++ b/src/net/common/serverlobbythread.cpp @@ -77,7 +77,7 @@ private: ServerLobbyThread::ServerLobbyThread(GuiInterface &gui, ConfigFile *playerConfig, AvatarManager &avatarManager) : m_gui(gui), m_avatarManager(avatarManager), m_playerConfig(playerConfig), - m_curGameId(1), m_curUniquePlayerId(1), m_curSessionId(INVALID_SESSION + 1), + m_curGameId(0), m_curUniquePlayerId(0), m_curSessionId(INVALID_SESSION + 1), m_statDataChanged(false), m_startTime(boost::posix_time::second_clock::local_time()) { m_senderCallback.reset(new ServerSenderCallback(*this));