Skip to content
Snippets Groups Projects
Commit c74e4b99 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Changed is_broke() to actually do what it promises

parent 0b9515bd
No related branches found
No related tags found
No related merge requests found
......@@ -130,7 +130,7 @@ bool player::make_bet(int bet_size, std::string &err) {
bool player::is_broke() {
return _money->get_value() <= 0;
return _money->get_value() + _bet_size->get_value() <= 0;
}
void player::won_round() {
......
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