From 3a179ea9585ab67878a2d5bb56974af47e2ec0dc Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Sat, 17 May 2025 23:24:30 -0300 Subject: [PATCH] Fixed GVAR external calls --- addons/main/XEH_PREP.hpp | 1 - addons/server/functions/fnc_3denCoreModuleConfig.sqf | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/addons/main/XEH_PREP.hpp b/addons/main/XEH_PREP.hpp index abc0273..087930b 100644 --- a/addons/main/XEH_PREP.hpp +++ b/addons/main/XEH_PREP.hpp @@ -1,3 +1,2 @@ -PREP(initCOTRouter); PREP(logMessage); PREP(notify); \ No newline at end of file diff --git a/addons/server/functions/fnc_3denCoreModuleConfig.sqf b/addons/server/functions/fnc_3denCoreModuleConfig.sqf index 9413741..9df688f 100644 --- a/addons/server/functions/fnc_3denCoreModuleConfig.sqf +++ b/addons/server/functions/fnc_3denCoreModuleConfig.sqf @@ -33,7 +33,7 @@ if (isServer) exitWith { { _objectType = _x call BIS_fnc_objectType; if ((_objectType select 0) == "Soldier") then { - if (!GETVAR(_x,EVAR(client,eudConnected))) then { + if (!GETVAR(_x,EGVAR(client,eudConnected),false)) then { _callsign = [_x] call armatak_fnc_extract_unit_callsign; _group_name = [group _x] call armatak_fnc_extract_group_color; _group_role = [_x] call armatak_fnc_extract_group_role;