From 600f95bdd035e2494b0e6dc6afce5492798cb74a Mon Sep 17 00:00:00 2001 From: Kai Philipp Date: Fri, 13 Sep 2019 14:49:26 +0200 Subject: [PATCH] bugfix --- 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 ed2bf707..855cdf2b 100644 --- a/src/net/common/serverlobbythread.cpp +++ b/src/net/common/serverlobbythread.cpp @@ -1812,7 +1812,7 @@ ServerLobbyThread::UserValid(unsigned playerId, const DBPlayerData &dbPlayerData tmpSession->GetPlayerData()->SetDBId(dbPlayerData.id); tmpSession->GetPlayerData()->SetCountry(dbPlayerData.country); LOG_ERROR("lastGames from db = " << dbPlayerData.lastGames); - std::vector lastGames; + std::vector lastGames; std::stringstream ss(dbPlayerData.lastGames); for (int i; ss >> i;) { lastGames.push_back(i);