get object uuids

master
Christopher 2020-06-19 12:57:05 +02:00
parent a773c28a73
commit f74b953983
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ namespace OpenSim.Modules.PathFinding
foreach (SceneObjectGroup thisGroup in m_scene.GetSceneObjectGroups())
{
if(thisGroup.Name == searchString)
returnList.Add(thisGroup.GroupID);
returnList.Add(thisGroup.UUID);
}
return returnList.ToArray();