This commit is contained in:
Albert Medela
2018-05-24 18:26:34 +02:00
parent b3c81c770f
commit 8e5b09ac62
7 changed files with 15 additions and 7 deletions
+1 -1
View File
@@ -3859,7 +3859,7 @@ void gameTableImpl::triggerVoteOnKick(int id)
int playerCount = static_cast<int>(seatList->size());
if (id < playerCount) {
PlayerListIterator pos = seatList->begin();
advance(pos, id);
std::advance(pos, id);
myStartWindow->getSession()->startVoteKickPlayer((*pos)->getMyUniqueID());
}
}