Fixed pot distribution in network games. Resetting computer player list after each game.

This commit is contained in:
lotodore
2007-08-11 21:21:41 +00:00
parent fd13bb56a1
commit 42cf7cb735
3 changed files with 9 additions and 4 deletions
+6
View File
@@ -485,6 +485,12 @@ ServerRecvThread::AddComputerPlayer(boost::shared_ptr<PlayerData> player)
m_computerPlayers.push_back(player);
}
void
ServerRecvThread::ResetComputerPlayerList()
{
m_computerPlayers.clear();
}
size_t
ServerRecvThread::GetCurNumberOfPlayers() const
{