From 62b25ccbfc75bb90d0795bc5f378d1e02565f3eb Mon Sep 17 00:00:00 2001 From: Dapoolp Date: Tue, 8 Jul 2025 19:46:24 +0200 Subject: [PATCH] Remove unnecessart args --- module/systemRegistration/socket.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/systemRegistration/socket.mjs b/module/systemRegistration/socket.mjs index 08d2bf3b..b336a012 100644 --- a/module/systemRegistration/socket.mjs +++ b/module/systemRegistration/socket.mjs @@ -1,4 +1,4 @@ -export function handleSocketEvent({ action = null, data = {} } = {}, ...args) { +export function handleSocketEvent({ action = null, data = {} } = {}) { switch (action) { case socketEvent.GMUpdate: Hooks.callAll(socketEvent.GMUpdate, data);