diff --git a/SQF/dayz_code/medical/bandage.sqf b/SQF/dayz_code/medical/bandage.sqf index 050576f87..729b2c73a 100644 --- a/SQF/dayz_code/medical/bandage.sqf +++ b/SQF/dayz_code/medical/bandage.sqf @@ -2,6 +2,8 @@ private ["_started","_finished","_animState","_isMedic","_id","_unit"]; +disableserialization; + _unit = (_this select 3) select 0; call fnc_usec_medic_removeActions; diff --git a/SQF/dayz_code/medical/morphine.sqf b/SQF/dayz_code/medical/morphine.sqf index a63848a13..11e6c0480 100644 --- a/SQF/dayz_code/medical/morphine.sqf +++ b/SQF/dayz_code/medical/morphine.sqf @@ -1,6 +1,9 @@ // bleed.sqf private ["_started","_finished","_animState","_isMedic","_id","_num_removed","_unit"]; + +disableserialization; + _unit = (_this select 3) select 0; _unit setVariable ["hit_legs",0]; diff --git a/SQF/dayz_code/medical/painkiller.sqf b/SQF/dayz_code/medical/painkiller.sqf index 45cdae866..d93c7eb35 100644 --- a/SQF/dayz_code/medical/painkiller.sqf +++ b/SQF/dayz_code/medical/painkiller.sqf @@ -1,10 +1,11 @@ // bleed.sqf private ["_id","_unit","_num_removed"]; + +disableserialization; + _unit = (_this select 3) select 0; - - call fnc_usec_medic_removeActions; r_action = false;