From 03442621f42962bdd665f87d441a9a7a9044a3e2 Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Fri, 9 Aug 2024 00:11:11 +0200 Subject: [PATCH] Add slot to datastorage set response --- MultiServer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/MultiServer.py b/MultiServer.py index f59855fca6..8deed2775b 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -1857,6 +1857,7 @@ async def process_client_cmd(ctx: Context, client: Client, args: dict): args["cmd"] = "SetReply" value = ctx.stored_data.get(args["key"], args.get("default", 0)) args["original_value"] = copy.copy(value) + args["slot"] = client.slot for operation in args["operations"]: func = modify_functions[operation["operation"]] value = func(value, operation["value"])