Compare commits

..

No commits in common. "f57810163f2a4bedc6dc1c12bdf8be1890e31290" and "29a1f3f4eccf52dcdac4da71e48caab127697932" have entirely different histories.

View file

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