From a419587042c184b508d4560f7e5738199cdca675 Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Sat, 24 Jan 2015 13:14:43 -0600 Subject: [PATCH] remove testing debug --- addons/attach/functions/fnc_detach.sqf | 2 -- 1 file changed, 2 deletions(-) diff --git a/addons/attach/functions/fnc_detach.sqf b/addons/attach/functions/fnc_detach.sqf index 66b419d6a0..3ecac44d62 100644 --- a/addons/attach/functions/fnc_detach.sqf +++ b/addons/attach/functions/fnc_detach.sqf @@ -33,9 +33,7 @@ if (_itemName == "B_IR_Grenade" or _itemName == "O_IR_Grenade" or _itemName == " detach _attachedItem; _attachedItem setPos [getPos _unit select 0, getPos _unit select 1, ((getPos _unit select 2) - 1000)]; // Delete attached item after 0.5 seconds - systemChat "wait"; _fnc_detachDelay = { - systemChat "deleting"; deleteVehicle (_this select 0); }; [_fnc_detachDelay, [_attachedItem], 0.5, 0] call EFUNC(common,waitAndExecute);