From 9c82832a545fe67fa295b8bfb5a3bc78dada5eef Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Sat, 10 May 2025 06:18:48 -0300 Subject: [PATCH] updated callsign function calls i cot router loop --- addons/main/functions/fn_init.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/main/functions/fn_init.sqf b/addons/main/functions/fn_init.sqf index 11af016..21b50b8 100644 --- a/addons/main/functions/fn_init.sqf +++ b/addons/main/functions/fn_init.sqf @@ -56,7 +56,7 @@ if (isServer) exitWith { { _objectType = _x call BIS_fnc_objectType; if ((_objectType select 0) == "Soldier") then { - _callsign = [_x] call armatak_fnc_extract_callsign; + _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; @@ -65,7 +65,7 @@ if (isServer) exitWith { }; if ((_objectType select 0) == "Vehicle") then { _atak_type = [_x] call armatak_fnc_extract_role; - _callsign = [_x] call armatak_fnc_extract_callsign; + _callsign = [_x] call armatak_fnc_extract_marker_callsign; [_x, _atak_type, _callsign] call armatak_fnc_send_marker_cot; };