mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 18:25:33 +08:00
refactor: rename SOG/SOP.GetProperties() to SendPropertiesToClient() to reflect what it actually does
This also makes it consistent with some other methods that send data to the client.
This commit is contained in:
@@ -1728,8 +1728,6 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
|
||||
#endregion
|
||||
|
||||
#region Scheduling
|
||||
|
||||
public override void Update()
|
||||
{
|
||||
// Check that the group was not deleted before the scheduled update
|
||||
@@ -1880,7 +1878,14 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
parts[i].SendTerseUpdateToAllClients();
|
||||
}
|
||||
|
||||
#endregion
|
||||
/// <summary>
|
||||
/// Send metadata about the root prim (name, description, sale price, etc.) to a client.
|
||||
/// </summary>
|
||||
/// <param name="client"></param>
|
||||
public void SendPropertiesToClient(IClientAPI client)
|
||||
{
|
||||
m_rootPart.SendPropertiesToClient(client);
|
||||
}
|
||||
|
||||
#region SceneGroupPart Methods
|
||||
|
||||
@@ -2369,15 +2374,6 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Return metadata about a prim (name, description, sale price, etc.)
|
||||
/// </summary>
|
||||
/// <param name="client"></param>
|
||||
public void GetProperties(IClientAPI client)
|
||||
{
|
||||
m_rootPart.GetProperties(client);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Set the name of a prim
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user