fix(botagent): correct unterminated string literal in lobby waiting loop
This commit is contained in:
parent
7e7173280b
commit
8e26c21995
|
|
@ -231,7 +231,7 @@ class SmartBotAgent:
|
|||
while True:
|
||||
turn_info = requests.get(f"{BASE_URL}/turn").json()
|
||||
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)
|
||||
continue
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue