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: