Files
DayZ-Epoch/SQF/dayz_server/compile/zombie_findOwner.sqf
2016-02-29 00:29:23 -05:00

9 lines
249 B
Plaintext

private["_unit"];
_unit = _this select 0;
#include "\z\addons\dayz_server\compile\server_toggle_debug.hpp"
#ifdef SERVER_DEBUG
diag_log ("CLEANUP: DELETE UNCONTROLLED ZOMBIE: " + (typeOf _unit) + " OF: " + str(_unit) );
#endif
deleteVehicle _unit;