diff --git a/SQF/dayz_code/actions/hide_body.sqf b/SQF/dayz_code/actions/hide_body.sqf index 646e022a4..717a0d149 100644 --- a/SQF/dayz_code/actions/hide_body.sqf +++ b/SQF/dayz_code/actions/hide_body.sqf @@ -13,4 +13,9 @@ if (isNull _body) exitWith { dayz_actionInProgress = false;}; player action ["hideBody", _body]; -dayz_actionInProgress = false; \ No newline at end of file +dayz_actionInProgress = false; + +if (_body isKindOf "zZombie_base" || {_body isKindOf "Animal"}) then { + uisleep 5; + deleteVehicle _body; +}; \ No newline at end of file