On rejoin, send full seats list, not only active players, so that the seatStatus can be updated properly.

This commit is contained in:
lotodore
2011-12-27 09:05:50 +00:00
parent de7a06da44
commit 4c15195f07
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -21,7 +21,7 @@
using namespace std;
PlayerData::PlayerData(unsigned uniqueId, int number, PlayerType type, PlayerRights rights, bool isGameAdmin)
: m_uniqueId(uniqueId), m_dbId(DB_ID_INVALID), m_number(number), m_startCash(0), m_type(type), m_rights(rights), m_isGameAdmin(isGameAdmin)
: m_uniqueId(uniqueId), m_dbId(DB_ID_INVALID), m_number(number), m_startCash(-1), m_type(type), m_rights(rights), m_isGameAdmin(isGameAdmin)
{
}