Compare commits

...

2 Commits

Author SHA1 Message Date
c29e46d5f7 Merge branch 'develop' of https://gitea.iceberg-gaming.com/hizumi/MissionTemplate into develop
All checks were successful
Generate testing snapshot / Create testing release (push) Successful in 40s
2024-02-16 19:05:27 -08:00
de074b62f2 make sure last time knocked unconscious variable is visible to all 2024-02-16 19:05:14 -08:00

View File

@@ -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;