diff --git a/src/engine/local_engine/localplayer.cpp b/src/engine/local_engine/localplayer.cpp index 7877f33f..7069556b 100755 --- a/src/engine/local_engine/localplayer.cpp +++ b/src/engine/local_engine/localplayer.cpp @@ -619,7 +619,7 @@ void LocalPlayer::flopEngine() { Tools::getRandNumber(1,8,1,&rand,0); bet = rand*actualHand->getSmallBlind(); // bet zu klein - if(bet == 0) { + if(bet < 2*actualHand->getSmallBlind()) { bet = 2*actualHand->getSmallBlind(); } // all in bei nur wenigen Chips @@ -1193,7 +1193,7 @@ void LocalPlayer::turnEngine() { Tools::getRandNumber(1,8,1,&rand,0); bet = rand*actualHand->getSmallBlind(); // bet zu klein - if(bet == 0) { + if(bet < 2*actualHand->getSmallBlind()) { bet = 2*actualHand->getSmallBlind(); } // all in bei nur wenigen Chips @@ -1516,7 +1516,7 @@ void LocalPlayer::riverEngine() { Tools::getRandNumber(1,8,1,&rand,0); bet = rand*actualHand->getSmallBlind(); // bet zu klein - if(bet == 0) { + if(bet < 2*actualHand->getSmallBlind()) { bet = 2*actualHand->getSmallBlind(); } // all in bei nur wenigen Chips