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

@@ -4,15 +4,15 @@ params ["_message", "_type", ["_title", "ARMATAK"]];
switch (_type) do {
case "success": {
_warning = format ["<t color='#00FF21'>%1</t><br/> %2", _title, _message];
_warning = format ["<t color='#00FF21'>ARMATAK - %1</t><br/> %2", _title, _message];
[[_warning, 1.5]] call CBA_fnc_notify;
};
case "warning": {
_warning = format ["<t color='#ffff16'>%1</t><br/> %2", _title, _message];
_warning = format ["<t color='#ffff16'>ARMATAK - %1</t><br/> %2", _title, _message];
[[_warning, 1.5]] call CBA_fnc_notify;
};
case "error": {
_warning = format ["<t color='#FF0021'>%1</t><br/> %2", _title, _message];
_warning = format ["<t color='#FF0021'>ARMATAK - %1</t><br/> %2", _title, _message];
[[_warning, 1.5]] call CBA_fnc_notify;
};
default {