Corrected line 118

This commit is contained in:
Donald Calloway 2025-09-20 12:12:35 -07:00
parent 2d5568fa3c
commit 3b38ea281f

View File

@ -115,7 +115,7 @@ def betting_round(players, current_bet, pot):
except ValueError as e:
print(e)
else:
print("Invalid action. Please enter 'call', 'raise', or 'fold'.")
print("Invalid action. Please enter 'call', 'raise', or 'fold', 'c', 'r' or 'f'.")
return current_bet, pot
@staticmethod