Fixed numerical typo

This commit is contained in:
Thomas Kwashnak
2022-01-11 15:56:31 -05:00
committed by GitHub
parent f43e31fb83
commit 5dff785129

View File

@@ -211,7 +211,7 @@ public class Roulette {
return false;
} else if (houseBalance <= 0) {
out.println("YOU BROKE THE HOUSE!");
playerBalance = 10100;
playerBalance = 101000;
houseBalance = 0;
return false;
} else {