mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 18:55:58 +08:00
!= UUID.Zero is slow
This commit is contained in:
@@ -180,7 +180,7 @@ namespace OpenSim.Services.Interfaces
|
||||
Dictionary<int, List<string>> atts = new Dictionary<int, List<string>>();
|
||||
foreach (AvatarAttachment attach in attachments)
|
||||
{
|
||||
if (attach.ItemID != UUID.Zero)
|
||||
if (!attach.ItemID.IsZero())
|
||||
{
|
||||
if (!atts.ContainsKey(attach.AttachPoint))
|
||||
atts[attach.AttachPoint] = new List<string>();
|
||||
|
||||
Reference in New Issue
Block a user