Remove unnecessart args

This commit is contained in:
Dapoolp 2025-07-08 19:46:24 +02:00
parent 3b3de19384
commit 62b25ccbfc

View file

@ -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);