remove playerlist iterator from log
This commit is contained in:
@@ -143,7 +143,7 @@ public:
|
||||
|
||||
void setMyWinnerState ( bool theValue, int pot ) {
|
||||
myWinnerState = theValue;
|
||||
if(theValue) actualHand->getGuiInterface()->logPlayerWinsMsg(myID, pot);
|
||||
if(theValue) actualHand->getGuiInterface()->logPlayerWinsMsg(myName, pot);
|
||||
}
|
||||
bool getMyWinnerState() const { return myWinnerState;}
|
||||
|
||||
|
||||
@@ -380,7 +380,7 @@ ClientPlayer::setMyWinnerState(bool theValue, int pot)
|
||||
boost::recursive_mutex::scoped_lock lock(m_syncMutex);
|
||||
myWinnerState = theValue;
|
||||
if(theValue)
|
||||
actualHand->getGuiInterface()->logPlayerWinsMsg(myID, pot);
|
||||
actualHand->getGuiInterface()->logPlayerWinsMsg(myName, pot);
|
||||
}
|
||||
|
||||
bool
|
||||
|
||||
Reference in New Issue
Block a user