debugging

This commit is contained in:
floty
2007-08-25 20:09:40 +00:00
parent 149092aecf
commit ccf02a0b8e
2 changed files with 83 additions and 72 deletions
+12 -5
View File
@@ -347,12 +347,12 @@ void LocalPlayer::preflopEngine() {
switch(actualHand->getMyID()) {
case 1: {
myAction = PLAYER_ACTION_CALL;
myAction = PLAYER_ACTION_FOLD;
}
break;
case 2: {
myAction = PLAYER_ACTION_CALL;
// raise = 120;
myAction = PLAYER_ACTION_RAISE;
raise = 70;
}
break;
default: {
@@ -365,12 +365,19 @@ void LocalPlayer::preflopEngine() {
switch(actualHand->getMyID()) {
case 1: {
myAction = PLAYER_ACTION_FOLD;
myAction = PLAYER_ACTION_RAISE;
raise = 20;
if(mySet >= 40) {
myAction = PLAYER_ACTION_CALL;
}
}
break;
case 2: {
myAction = PLAYER_ACTION_RAISE;
raise = 120;
raise = 50;
if(mySet >= 70) {
myAction = PLAYER_ACTION_CALL;
}
}
break;
default: {