This commit is contained in:
Firepup Sixfifty 2024-11-13 11:27:06 -06:00
parent 29a1f3f4ec
commit 3575927c85
Signed by: Firepup650
SSH key fingerprint: SHA256:cb8sEJwc0kQJ6/nMUhscWRe35itf0NFMdSKl3v4qt48

View file

@ -60,7 +60,7 @@ def doRound(turn, canCheat, player, computer):
break
bank += res[0]
print(f"Computer rolled a {res[0]}, bank is now {bank}")
shouldRoll = fp.rint(0, 1)
shouldRoll = fp.randint(0, 1)
if not shouldRoll:
print(
f"Computer stopped rolling after {rollCounter} roll(s), bank was {bank} points{' (!! CHEAT !!)' if cheatFlag else ''}"