allow logging of object deletion

This commit is contained in:
[VB]AWOL
2013-10-27 11:46:14 -05:00
parent cc41e4d652
commit 613904a846

View File

@@ -12,15 +12,11 @@ if (isServer) then {
//Send request
_key = format["CHILD:304:%1:",_id];
_key call server_hiveWrite;
#ifdef DZE_SERVER_DEBUG_HIVE
diag_log format["DELETE: %1 Deleted by ID: %2",_activatingPlayer,_id];
#endif
} else {
//Send request
_key = format["CHILD:310:%1:",_uid];
_key call server_hiveWrite;
#ifdef DZE_SERVER_DEBUG_HIVE
diag_log format["DELETE: %1 Deleted by UID: %2",_activatingPlayer,_uid];
#endif
};
};