From 0547b7b37fef44d3c21008e37d444a274546a94c Mon Sep 17 00:00:00 2001 From: lotodore Date: Sun, 7 Oct 2007 21:52:15 +0000 Subject: [PATCH] Removed hack which is not working anyway. --- src/game.cpp | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/game.cpp b/src/game.cpp index 2325ec31..de144817 100755 --- a/src/game.cpp +++ b/src/game.cpp @@ -180,22 +180,6 @@ void Game::initHand() // eventuell vorhandene Hand löschen if(actualHand) { - -// TODO HACK - for(it=seatsList->begin(); it!=seatsList->end(); it++) { - if (!(*it)->getMyActiveStatus()) - { - if ((*it)->getMyUniqueID() == getCurrentHand()->getCurrentBeRo()->getCurrentPlayersTurnId()) - { - it_2 = it; - it_2++; - if (it_2 == seatsList->end()) - it_2 = seatsList->begin(); - getCurrentHand()->getCurrentBeRo()->setCurrentPlayersTurnId((*it_2)->getMyUniqueID()); - } - } - } - delete actualHand; actualHand = 0; }