added .lower() to the PVC colour picker

This commit is contained in:
Vincent Rodley 2025-10-24 13:17:54 +13:00
parent 495c2e192c
commit 210f63fdfb
2 changed files with 5 additions and 1 deletions

View File

@ -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
View File

@ -0,0 +1,4 @@
{
"display_mode": "coloured_background",
"cpu_search_depth": 5
}