diff --git a/SQF/dayz_code/compile/fn_damageHandler.sqf b/SQF/dayz_code/compile/fn_damageHandler.sqf index d1369e0ce..322cefd69 100644 --- a/SQF/dayz_code/compile/fn_damageHandler.sqf +++ b/SQF/dayz_code/compile/fn_damageHandler.sqf @@ -392,7 +392,8 @@ if (_hit in USEC_MinorWounds) then { [_unit,_hit,(_damage / 2)] call object_processHit; }; - [_unit,_hit,(_damage / 2)] call object_processHit; + //Stop process hit running twice. its set aboue in the if else statement. + //[_unit,_hit,(_damage / 2)] call object_processHit; }; };