From 4122b32dba03b8585bfb0f4b5e3f1a1769898714 Mon Sep 17 00:00:00 2001 From: Glowbal Date: Sat, 5 Sep 2015 12:02:09 +0200 Subject: [PATCH] Removed deprecated wound sync code --- addons/medical/functions/fnc_handleKilled.sqf | 7 ------- 1 file changed, 7 deletions(-) diff --git a/addons/medical/functions/fnc_handleKilled.sqf b/addons/medical/functions/fnc_handleKilled.sqf index d4fbfee30a..d6a4440d76 100644 --- a/addons/medical/functions/fnc_handleKilled.sqf +++ b/addons/medical/functions/fnc_handleKilled.sqf @@ -22,11 +22,4 @@ if (GVAR(level) >= 2) then { _unit setvariable [QGVAR(heartRate), 0]; _unit setvariable [QGVAR(bloodPressure), [0, 0]]; _unit setvariable [QGVAR(airwayStatus), 0]; - - if (USE_WOUND_EVENT_SYNC) then { - _openWounds = _unit getvariable [QGVAR(openWounds), []]; - { - ["medical_propagateWound", [_unit, _x]] call EFUNC(common,globalEvent); - }foreach _openWounds; - }; };