diff --git a/framework/client/functions/fn_bindUnconsciousListener.sqf b/framework/client/functions/fn_bindUnconsciousListener.sqf index f2bfb4b..35785fe 100644 --- a/framework/client/functions/fn_bindUnconsciousListener.sqf +++ b/framework/client/functions/fn_bindUnconsciousListener.sqf @@ -4,10 +4,10 @@ if (!hasInterface) exitWith {}; ["ace_medical_knockOut", { // local event that's also used directly by the ACE medical statemachine private _unit = _this; - _this setVariable [QGVARMAIN(lastTimeKnockedOut), diag_tickTime]; + _this setVariable [QGVARMAIN(lastTimeKnockedOut), diag_tickTime, true]; }] call CBA_fnc_addEventHandler; ["ace_medical_WakeUp", { // local event that's also used directly by the ACE medical statemachine private _unit = _this; - _this setVariable [QGVARMAIN(lastTimeKnockedOut), nil]; + _this setVariable [QGVARMAIN(lastTimeKnockedOut), nil, true]; }] call CBA_fnc_addEventHandler; \ No newline at end of file