From 577125120d47ee391746aa991a4843b00ee96aa0 Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Fri, 16 May 2025 03:35:08 -0300 Subject: [PATCH] Added systemChat for unhandled notify calls --- addons/main/functions/fnc_notify.sqf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/main/functions/fnc_notify.sqf b/addons/main/functions/fnc_notify.sqf index e4f29ed..f812f60 100644 --- a/addons/main/functions/fnc_notify.sqf +++ b/addons/main/functions/fnc_notify.sqf @@ -15,5 +15,7 @@ switch (_type) do { _warning = format ["%1
%2", _title, _message]; [[_warning, 1.5]] call CBA_fnc_notify; }; - default { }; + default { + systemChat format ["%1 - %2", _title, _message]; + }; }; \ No newline at end of file