mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 11:57:03 +08:00
cosmetics
This commit is contained in:
@@ -355,7 +355,7 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands
|
||||
return;
|
||||
|
||||
Predicate<SceneObjectGroup> searchPredicate
|
||||
= so => so.OwnerID == ownerID && !so.IsAttachment;
|
||||
= so => so.OwnerID.Equals(ownerID) && !so.IsAttachment;
|
||||
|
||||
OutputSogsToConsole(searchPredicate, showFull);
|
||||
}
|
||||
@@ -762,7 +762,7 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands
|
||||
|
||||
m_scene.ForEachSOG(delegate (SceneObjectGroup g)
|
||||
{
|
||||
if (g.OwnerID == match && !g.IsAttachment)
|
||||
if (g.OwnerID.Equals(match) && !g.IsAttachment)
|
||||
deletes.Add(g);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user