From 8a949d4f2442e031b6eba07a6b55b5bff05be5a1 Mon Sep 17 00:00:00 2001 From: Vdauphin Date: Tue, 6 Sep 2022 21:37:24 +0200 Subject: [PATCH] ace_tagCreated EH not fire x (#9025) --- addons/tagging/functions/fnc_createTag.sqf | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/tagging/functions/fnc_createTag.sqf b/addons/tagging/functions/fnc_createTag.sqf index feec84d312..4c29ad0f09 100644 --- a/addons/tagging/functions/fnc_createTag.sqf +++ b/addons/tagging/functions/fnc_createTag.sqf @@ -33,6 +33,7 @@ if (_isVehicleTag) exitWith { TRACE_3("tagging vehicle",_object,typeOf _object,_texture); _object setObjectTextureGlobal [getText (configOf _object >> "selectionClan"), _texture]; // if (_material != "") then { _object setObjectMaterialGlobal ["clan", _material] }; // ?? + ["ace_tagCreated", [objNull, _texture, _object, _unit]] call CBA_fnc_globalEvent; }; private _tag = createSimpleObject [_tagModel, _tagPosASL];