fixed extract uuid function

This commit is contained in:
Valmo Trindade
2024-08-19 04:45:28 -03:00
parent 4ae677f06c
commit 5bcdb29515

View File

@@ -2,7 +2,7 @@ params["_unit"];
_uuid = _unit getVariable "_atak_uid"; _uuid = _unit getVariable "_atak_uid";
if (_uuid == "") then { if (isNil "_uuid") then {
_uuid = "armatak" callExtension "get_uid"; _uuid = "armatak" callExtension "get_uid";
_unit setVariable ["_atak_uid", _uuid]; _unit setVariable ["_atak_uid", _uuid];
}; };