From 4847be98d2e655bd4ced7dcd7d12336a95b0f46b Mon Sep 17 00:00:00 2001 From: CookieCat <81494827+CookieCat45@users.noreply.github.com> Date: Wed, 22 Oct 2025 23:30:46 -0400 Subject: [PATCH] AHIT: Fix death link timestamps being incorrect (#5404) --- worlds/ahit/Client.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/worlds/ahit/Client.py b/worlds/ahit/Client.py index 64c1124f..6a65869d 100644 --- a/worlds/ahit/Client.py +++ b/worlds/ahit/Client.py @@ -1,4 +1,6 @@ import asyncio +import time + import Utils import websockets import functools @@ -208,6 +210,9 @@ async def proxy(websocket, path: str = "/", ctx: AHITContext = None): if not ctx.is_proxy_connected(): break + if msg["cmd"] == "Bounce" and msg.get("tags") == ["DeathLink"] and "data" in msg: + msg["data"]["time"] = time.time() + await ctx.send_msgs([msg]) except Exception as e: