Update videopoker.py

This commit is contained in:
SpudGunMan
2024-09-19 20:40:53 -07:00
parent 0c99dc52d3
commit 14644da9c1
+1 -1
View File
@@ -153,7 +153,7 @@ class PlayerVP:
redraw_index = int(message) - 1
self.hand[redraw_index] = deck.draw_card()
except ValueError:
return "Please enter a valid card slot to re-deal 1 to 5."
return "Please enter a valid card slot to re-deal 1 to 5. Separate multiple cards with a comma."
else:
redraw_list = [int(x) - 1 for x in message.split(',')]