Skip to content

Commit e42d1f2

Browse files
player controls update table display
1 parent acd1140 commit e42d1f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/controls.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ def print_help(self):
1818
t = Table(title="Controls")
1919
t.add_column("Control", style='cyan')
2020
t.add_column("Description", style='cyan')
21+
t.add_row("-allin", "Exactly what you think, going all in!")
22+
t.add_row("-dealer", 'Ask the dealer to increase your max bet.')
23+
t.add_row("-delete", 'Delete player stats.')
2124
t.add_row("-help", 'Show available controls and their descriptions.')
2225
t.add_row("-quit", 'Quit the game.')
2326
t.add_row("-stats", 'Show your statistics.')
2427
t.add_row("-win", 'Show possible winnings.')
25-
t.add_row("-dealer", 'Ask the dealer to increase your max bet.')
26-
t.add_row("-delete", 'Delete player stats.')
27-
t.add_row("-allin", "Exactly what you think, going all in!")
2828
print(t)
2929
input("Press enter to continue...")
3030
self.slotmachine.clear_screen()

0 commit comments

Comments
 (0)