From e40dfe76dd10f35b5013b5b2e6c5089a7cf006e2 Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Sat, 22 Nov 2025 12:14:18 -0300 Subject: [PATCH] Added zero latency to clientside UDP Socket --- addons/client/functions/fnc_startUDPSocket.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/client/functions/fnc_startUDPSocket.sqf b/addons/client/functions/fnc_startUDPSocket.sqf index 71100e4..edb890b 100644 --- a/addons/client/functions/fnc_startUDPSocket.sqf +++ b/addons/client/functions/fnc_startUDPSocket.sqf @@ -25,7 +25,7 @@ player setVariable [QGVAR(eudConnected), true]; if (player getVariable [QGVAR(eudConnected), false]) then { "armatak" callExtension ["udp_socket:send_gps_cot", [player call FUNC(extractClientPosition)]]; }; -}, 0.1, []] call CBA_fnc_addPerFrameHandler; +}, 0, []] call CBA_fnc_addPerFrameHandler; deleteVehicle _logic; closeDialog 1;