From 96e0d0e758514eceb8210441b48c9e89ca07c618 Mon Sep 17 00:00:00 2001 From: Glowbal Date: Sun, 1 Feb 2015 11:14:21 +0100 Subject: [PATCH] Removed rouge debug code & dead code --- addons/resting/functions/fnc_restWeapon.sqf | 3 --- addons/resting/functions/fnc_unRestWeapon.sqf | 1 - 2 files changed, 4 deletions(-) diff --git a/addons/resting/functions/fnc_restWeapon.sqf b/addons/resting/functions/fnc_restWeapon.sqf index e66e13bc6f..52b1932f62 100644 --- a/addons/resting/functions/fnc_restWeapon.sqf +++ b/addons/resting/functions/fnc_restWeapon.sqf @@ -14,8 +14,6 @@ EXPLODE_3_PVT(_this,_unit,_vehicle,_weapon); -systemChat format["restingWeapon %1", _this]; - if (_weapon != primaryWeapon _unit) exitWith {}; if (_unit getVariable ["ACE_weaponRested", false]) exitWith {_this call FUNC(unRestWeapon)}; @@ -36,7 +34,6 @@ if (true in _intersects) then { // REST THE WEAPON addCamShake CAMSHAKE; playSound QGVAR(rest); - // playSound3D [QUOTE(PATHTOF(sounds\weaponrest_rest.wav)), _unit]; if ([_weapon] call FUNC(hasBipod) && {_intersects select 3}) then { _unit setVariable ["ACE_bipodDeployed", true]; diff --git a/addons/resting/functions/fnc_unRestWeapon.sqf b/addons/resting/functions/fnc_unRestWeapon.sqf index deeb4f6c52..86caa31ac8 100644 --- a/addons/resting/functions/fnc_unRestWeapon.sqf +++ b/addons/resting/functions/fnc_unRestWeapon.sqf @@ -44,7 +44,6 @@ if (_unit getVariable ["ACE_bipodDeployed", false]) then { [localize "STR_ACE_Resting_WeaponLifted", _picture] call EFUNC(common,displayTextPicture); }; playSound QGVAR(unrest); -//playSound3D [QUOTE(PATHTOF(sounds\weaponrest_unrest.wav)), _unit]; _unit setVariable ["ACE_weaponRested", false]; _unit setVariable ["ACE_bipodDeployed", false];