From 2032ccaec95967552409f450c115332684e8e0cb Mon Sep 17 00:00:00 2001 From: floty Date: Sun, 6 Mar 2011 13:22:52 +0000 Subject: [PATCH] fixing Ticket #61 by limiting small Blind; highestSet and minimumRaise should thus limited too --- src/game.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game.cpp b/src/game.cpp index 556827a2..d8bd3377 100755 --- a/src/game.cpp +++ b/src/game.cpp @@ -259,5 +259,6 @@ void Game::raiseBlinds() } } } + currentSmallBlind = min(currentSmallBlind,startQuantityPlayers*startCash/2); } }