From bcefc7670f8ac96313231468635f3f08eea7d381 Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Thu, 15 May 2025 23:56:52 -0300 Subject: [PATCH] removed padding on websocket router --- addons/client/functions/fnc_socketRouter.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/client/functions/fnc_socketRouter.sqf b/addons/client/functions/fnc_socketRouter.sqf index fa6a1a3..018a384 100644 --- a/addons/client/functions/fnc_socketRouter.sqf +++ b/addons/client/functions/fnc_socketRouter.sqf @@ -4,7 +4,7 @@ if (!hasInterface) exitWith {}; _local_address = "armatak" callExtension ["local_ip", []] select 0; -SETVAR(player,localAddress,_local_address); +SETVAR(player,GVAR(localAddress),_local_address); [{ "armatak" callExtension ["websocket:location", [player call FUNC(extractClientPosition)]];