Make GroupRootUpdate be a terse update. This method is not used by opensim (it should), but it's used by external modules.

0.6.8-post-fixes
Diva Canto 2009-11-14 14:14:08 -08:00
parent 2e24415077
commit d5c18f6149
1 changed files with 2 additions and 2 deletions

View File

@ -1967,12 +1967,12 @@ namespace OpenSim.Region.Framework.Scenes
/// Note: this may not be cused by opensim (it probably should) but it's used by
/// external modules.
/// </summary>
public void SendGroupRootUpdate()
public void SendGroupRootTerseUpdate()
{
if (IsDeleted)
return;
RootPart.SendFullUpdateToAllClients();
RootPart.SendTerseUpdateToAllClients();
}
public void QueueForUpdateCheck()