Pain Affects Stability

This commit is contained in:
Bummeri 2021-02-06 15:07:19 +02:00
parent 08472f6343
commit d8f3718fd6

View File

@ -31,4 +31,7 @@ if (_bloodPressureL < 50 || {_bloodPressureH < 60}) exitWith { false };
private _heartRate = GET_HEART_RATE(_unit);
if (_heartRate < 40) exitWith { false };
private _painLevel = GET_PAIN(_unit);
if (_painLevel > PAIN_UNCONSCIOUS) exitWith { false };
true