diff --git a/SQF/dayz_code/compile/object_getHit.sqf b/SQF/dayz_code/compile/object_getHit.sqf index 4d6a8d6c8..bdf5c0895 100644 --- a/SQF/dayz_code/compile/object_getHit.sqf +++ b/SQF/dayz_code/compile/object_getHit.sqf @@ -1,7 +1,8 @@ +private["_unit","_hp","_selection","_strH","_dam"]; _unit = _this select 0; _hp = _this select 1; _selection = getText (configFile >> "CfgVehicles" >> (typeOf _unit) >> "HitPoints" >> _hp >> "name"); _dam = _unit getHit _selection; -[_dam, _selection]; \ No newline at end of file +[_dam, _selection];