Skip to content
Snippets Groups Projects
Commit fb0929fc authored by LUCA WOLFART's avatar LUCA WOLFART
Browse files

now recovery actually works

parent 73480863
No related branches found
No related tags found
No related merge requests found
......@@ -110,9 +110,9 @@ void GameController::makeBet() {
return;
}
if(_is_number(inputPlayerBet) && !inputPlayerBet.IsEmpty()){
if(bet_int != 0){
std::string bet_string = inputPlayerBet.ToStdString();
int bet_int = std::stoi(bet_string);
bet_int = std::stoi(bet_string);
}
// check to make sure this in a logical integer + ADD RECOVERY (SHOW BET PANEL AGAIN)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment