develop #34

Merged
hizumi merged 7 commits from develop into main 2024-03-01 23:59:31 -06:00
Showing only changes of commit 737f1ef7ee - Show all commits

View File

@@ -12,9 +12,9 @@ if ( !hasInterface ) exitWith {};
if (_causeOfDeath != "respawn_button") exitWith {}; if (_causeOfDeath != "respawn_button") exitWith {};
private _timeWentUnconscious = _unit getVariable [QGVARMAIN(lastTimeKnockedOut), -1]; private _timeWentUnconscious = _unit getVariable [QGVARMAIN(lastTimeKnockedOut), -1];
private _durationSpentUnconscious = -1; private _durationSpentUnconscious = -1;
if (_timeWentUnconscious != -1) then { if (_timeWentUnconscious isEqualTo -1) exitWith {};
_durationSpentUnconscious = diag_tickTime - _timeWentUnconscious;
}; _durationSpentUnconscious = diag_tickTime - _timeWentUnconscious;
[ [
LEVEL_INFO, LEVEL_INFO,