added .lower() to the PVC colour picker
This commit is contained in:
parent
495c2e192c
commit
210f63fdfb
|
|
@ -347,7 +347,7 @@ def play_lan_client():
|
|||
def play_vs_computer():
|
||||
|
||||
while True:
|
||||
inp = input("Do you want to play as red or yellow? ")
|
||||
inp = input("Do you want to play as red or yellow? ").lower()
|
||||
try:
|
||||
if not inp in ["r", "red", "y", "yellow"]:
|
||||
raise ValueError
|
||||
|
|
|
|||
4
settings.json
Normal file
4
settings.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"display_mode": "coloured_background",
|
||||
"cpu_search_depth": 5
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user