From 1af186783ff41c6a417e7736317bbc715446189b Mon Sep 17 00:00:00 2001 From: Vishesh 'ironeagle' Bangotra Date: Tue, 25 Nov 2025 18:50:04 +0530 Subject: [PATCH] fixes --- game_flow.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/game_flow.py b/game_flow.py index 2da9223..7dd19b0 100644 --- a/game_flow.py +++ b/game_flow.py @@ -130,19 +130,19 @@ async def main(): # 6) Play a quick winning game for P1 (X) # P1: (0,0) await send_move(ws1, match_id, 0, 0) - await asyncio.sleep(1.5) + await asyncio.sleep(0.3) # P2: (1,1) await send_move(ws2, match_id, 1, 1) - await asyncio.sleep(1.5) + await asyncio.sleep(0.3) # P1: (0,1) await send_move(ws1, match_id, 0, 1) - await asyncio.sleep(1.5) + await asyncio.sleep(0.3) # P2: (2,2) await send_move(ws2, match_id, 2, 2) - await asyncio.sleep(1.5) + await asyncio.sleep(0.3) # P1: (0,2) -> X wins by top row await send_move(ws1, match_id, 0, 2)