Plumb in the list if user IDs to the land module to allow selection

of objects by owner name
This commit is contained in:
Melanie Thielker
2008-11-21 04:41:39 +00:00
parent 0092ecbce7
commit e9ad6f7913
5 changed files with 17 additions and 9 deletions

View File

@@ -976,9 +976,9 @@ namespace OpenSim.Region.Environment.Modules.World.Land
join(west, south, east, north, remote_client.AgentId);
}
public void handleParcelSelectObjectsRequest(int local_id, int request_type, IClientAPI remote_client)
public void handleParcelSelectObjectsRequest(int local_id, int request_type, List<UUID> returnIDs, IClientAPI remote_client)
{
m_landList[local_id].sendForceObjectSelect(local_id, request_type, remote_client);
m_landList[local_id].sendForceObjectSelect(local_id, request_type, returnIDs, remote_client);
}
public void handleParcelObjectOwnersRequest(int local_id, IClientAPI remote_client)