fix(botagent): correct unterminated string literal in lobby waiting loop

This commit is contained in:
Isaac Johnson 2026-09-06 08:26:33 -05:00
parent 7e7173280b
commit 8e26c21995
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ class SmartBotAgent:
while True: while True:
turn_info = requests.get(f"{BASE_URL}/turn").json() turn_info = requests.get(f"{BASE_URL}/turn").json()
if not turn_info.get("game_started", False): if not turn_info.get("game_started", False):
print("⏳ [LOBBY] Waiting for game to start via 'Start Game' in UI...", end=" ") print("⏳ [LOBBY] Waiting for game to start via 'Start Game' in UI...", end="\r")
time.sleep(0.5) time.sleep(0.5)
continue continue