Rewrite and fix isMedic

This commit is contained in:
KoffeinFlummi 2015-03-19 22:27:12 +01:00
parent 97082e4ce3
commit 5589b80c70

View File

@ -18,18 +18,7 @@ private ["_unit","_class","_return"];
_unit = _this select 0;
_medicN = if (count _this > 1) then {_this select 1} else {1};
_return = false;
if (GVAR(medicSetting) >= 1) then {
_class = _unit getvariable [QGVAR(medicClass), 0];
if (GVAR(medicSetting) == 1) then {
_return = _class > 0;
} else {
if (_class >= _medicN) then {
_return = true;
};
};
} else {
_return = true;
};
_class = _unit getVariable [QGVAR(medicClass),
getNumber (configFile >> "CfgVehicles" >> typeOf _unit >> "attendant")];
_return;
(_class min GVAR(medicSetting)) >= (_medicN min GVAR(medicSetting))