linted callback EH logging

This commit is contained in:
Valmo Trindade
2025-05-17 05:02:39 -03:00
parent 2299a3f5c9
commit 6208286294
2 changed files with 7 additions and 7 deletions

View File

@@ -17,19 +17,19 @@ addMissionEventHandler ["ExtensionCallback", {
[_function, "error", _name] call armatak_main_fnc_notify;
};
if (_name == "armatak_tcp_socket") then {
if (_name == "TCP SOCKET") then {
[_function, "success", _name] call armatak_main_fnc_notify;
};
if (_name == "armatak_tcp_socket_error") then {
if (_name == "TCP SOCKET ERROR") then {
[_function, "error", _name] call armatak_main_fnc_notify;
};
if (_name == "armatak_video") then {
if (_name == "VIDEO") then {
[_function, "success", _name] call armatak_main_fnc_notify;
};
if (_name == "armatak_video_error") then {
if (_name == "VIDEO ERROR") then {
[_function, "error", _name] call armatak_main_fnc_notify;
};
}];