Update fnc_treatment_success.sqf

Error at 84 line - you forget ";"
This commit is contained in:
Ivan Krouglyi 2016-02-13 03:29:42 +03:00
parent 0df06ea4c1
commit 0a226b5ee9

View File

@ -81,7 +81,7 @@ if ((GVAR(level) >= 2) && {([_target] call FUNC(hasMedicalEnabled))}) then {
} else {
//Basic Medical (just use blodyPartStatus):
private _damageBodyParts = _target getvariable [QGVAR(bodyPartStatus), [0,0,0,0,0,0]];
_bloodLossOnSelection = _damageBodyParts select _partNumber
_bloodLossOnSelection = _damageBodyParts select _partNumber;
TRACE_1("basic",_bloodLossOnSelection);
};