From 2ec4499c7a4a86da736e137aed5df0b91ec98c2b Mon Sep 17 00:00:00 2001 From: oiad Date: Fri, 5 Jan 2018 09:17:57 +1300 Subject: [PATCH] Fix deployables not deleting and breaking stuff --- DayZ_Epoch_11.Chernarus/scripts/deployAnything/pack.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DayZ_Epoch_11.Chernarus/scripts/deployAnything/pack.sqf b/DayZ_Epoch_11.Chernarus/scripts/deployAnything/pack.sqf index 1686f69..5c87ad7 100644 --- a/DayZ_Epoch_11.Chernarus/scripts/deployAnything/pack.sqf +++ b/DayZ_Epoch_11.Chernarus/scripts/deployAnything/pack.sqf @@ -50,7 +50,7 @@ if (_deployable call getPermanent) then { PVDZ_obj_Destroy = [_cursorTarget getVariable["ObjectID","0"],_cursorTarget getVariable["ObjectUID","0"],player,_cursorTarget,dayz_authKey]; publicVariableServer "PVDZ_obj_Destroy"; } else { - deleteVehicle _deployable; + deleteVehicle _cursorTarget; }; player removeAction (_deployable call getActionId);