Files
DayZ-Epoch/SQF/dayz_code/medical/publicEH/animHealed.sqf
icomrade e54b9983dd Replace forEach with Count
Use count where you do not need _forEachIndex variable, it's quicker
than forEach.
2014-05-27 15:37:57 -04:00

10 lines
235 B
Plaintext

// animHealed.sqf
private ["_unit"];
_unit = _this select 0;
_unit switchMove "AmovPpneMstpSnonWnonDnon_healed";
if ((_unit == player) || (vehicle player != player)) then {
r_player_unconscious = false;
r_player_injured = false;
};