mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +08:00
== UUID.Zero is slow
This commit is contained in:
@@ -597,11 +597,8 @@ namespace OpenSim.Groups
|
||||
string giver = notice.noticeData.AttachmentOwnerID;
|
||||
UUID attachmentUUID = notice.noticeData.AttachmentItemID;
|
||||
|
||||
if (attachmentUUID == null ||
|
||||
attachmentUUID.IsZero() ||
|
||||
giver == null ||
|
||||
giver == UUID.Zero.ToString()
|
||||
)
|
||||
if (attachmentUUID == null || attachmentUUID.IsZero() ||
|
||||
giver == null || giver == UUID.ZeroString )
|
||||
return;
|
||||
|
||||
if (m_debugEnabled)
|
||||
|
||||
Reference in New Issue
Block a user