create game limit

This commit is contained in:
Kai Philipp
2019-09-11 20:45:52 +02:00
parent ff4c2c5302
commit c3a5c8ec85
5 changed files with 11 additions and 6 deletions
+1 -1
View File
@@ -240,7 +240,7 @@ ServerDBThread::SetPlayerLastGames(unsigned requestId, DB_id playerId, std::vect
LOG_ERROR("ServerDBThread::SetPlayerLastGames() entered.");
std::ostringstream oss;
std::copy(lastGames.begin(), lastGames.end(), std::ostream_iterator<int>(oss, ";"));
std::copy(lastGames.begin(), lastGames.end(), std::ostream_iterator<int>(oss, ","));
std::string lastGamesFieldValue( oss.str() );
list<string> params;
ostringstream paramStream;