From 3702679ee40e2974b9ed7f96681418537db4d688 Mon Sep 17 00:00:00 2001 From: Glowbal Date: Wed, 8 Apr 2015 21:31:59 +0200 Subject: [PATCH] fixed wrong value for radio disabled on waking up --- addons/medical/XEH_postInit.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/medical/XEH_postInit.sqf b/addons/medical/XEH_postInit.sqf index 7d52ff36d4..1b0a38f1af 100644 --- a/addons/medical/XEH_postInit.sqf +++ b/addons/medical/XEH_postInit.sqf @@ -25,9 +25,9 @@ GVAR(heartBeatSounds_Slow) = ["ACE_heartbeat_slow_1", "ACE_heartbeat_slow_2"]; } else { _unit setVariable ["tf_globalVolume", 1]; _unit setVariable ["tf_voiceVolume", 1, true]; - _unit setVariable ["tf_unable_to_use_radio", true, true]; + _unit setVariable ["tf_unable_to_use_radio", false, true]; - _unit setVariable ["acre_sys_core_isDisabled", true, true]; + _unit setVariable ["acre_sys_core_isDisabled", false, true]; _unit setVariable ["acre_sys_core_globalVolume", 1]; }; };