From f842c23a542ebacb600f54658617e14dfc6e21ce Mon Sep 17 00:00:00 2001 From: Moritz Schmidt Date: Sat, 21 Apr 2018 23:00:52 +0200 Subject: [PATCH] fix error logging --- functions/endings/fn_presetTimeout.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/endings/fn_presetTimeout.sqf b/functions/endings/fn_presetTimeout.sqf index b7976aa..5d0c0f8 100644 --- a/functions/endings/fn_presetTimeout.sqf +++ b/functions/endings/fn_presetTimeout.sqf @@ -19,6 +19,6 @@ _condition = compile _condition; ["grad_notification1",["TIME",_messageText]] remoteExec ["bis_fnc_showNotification",0,false]; },_x,_time - _x] call CBA_fnc_waitAndExecute; } else { - ERROR_1("Cannot create a %1 second reminder for timeout. Only %2 seconds max time.",_x,_time); + ERROR_2("Cannot create a %1 second reminder for timeout. Only %2 seconds max time.",_x,_time); }; } forEach _reminders;