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)