* Group type stuff. Nothing spectacular. two packets, sorta almost semi half tiny amount implemented.

This commit is contained in:
Teravus Ovares
2008-05-18 03:21:22 +00:00
parent 89056c492d
commit 2bd03b7c8c
9 changed files with 157 additions and 12 deletions

View File

@@ -2510,5 +2510,16 @@ namespace OpenSim.Region.Environment.Scenes
}
}
}
public void SetGroup(LLUUID GroupID, IClientAPI client)
{
lock (m_parts)
{
foreach (SceneObjectPart part in m_parts.Values)
{
part.SetGroup(GroupID, client);
}
}
ScheduleGroupForFullUpdate();
}
}
}