diff --git a/addons/main/XEH_postInit.sqf b/addons/main/XEH_postInit.sqf
index f130478..bd8861d 100644
--- a/addons/main/XEH_postInit.sqf
+++ b/addons/main/XEH_postInit.sqf
@@ -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;
};
}];
\ No newline at end of file
diff --git a/addons/main/functions/fnc_notify.sqf b/addons/main/functions/fnc_notify.sqf
index f812f60..83fccfb 100644
--- a/addons/main/functions/fnc_notify.sqf
+++ b/addons/main/functions/fnc_notify.sqf
@@ -4,15 +4,15 @@ params ["_message", "_type", ["_title", "ARMATAK"]];
switch (_type) do {
case "success": {
- _warning = format ["%1
%2", _title, _message];
+ _warning = format ["ARMATAK - %1
%2", _title, _message];
[[_warning, 1.5]] call CBA_fnc_notify;
};
case "warning": {
- _warning = format ["%1
%2", _title, _message];
+ _warning = format ["ARMATAK - %1
%2", _title, _message];
[[_warning, 1.5]] call CBA_fnc_notify;
};
case "error": {
- _warning = format ["%1
%2", _title, _message];
+ _warning = format ["ARMATAK - %1
%2", _title, _message];
[[_warning, 1.5]] call CBA_fnc_notify;
};
default {