bugfix für issue #3 (money disappears in rare case)

This commit is contained in:
floty
2012-12-20 18:15:06 +01:00
parent fe7f34a504
commit bf5f0cc1a7
+2 -1
View File
@@ -197,7 +197,8 @@ void LocalBoard::distributePot()
it = seatsList->begin();
for(l=2; l<potLevel.size(); l++) {
if((*it)->getMyUniqueID() == potLevel[l]) winnerHit = true;
if((*it)->getMyActiveStatus() && (*it)->getMyUniqueID() == potLevel[l])
winnerHit = true;
}
}