Remove AgentID and GroupOD from the signature of SOG.Copy(). They were never

used, but made for a very mispleading read of the code in the callers.
This commit is contained in:
Melanie Thielker
2010-06-28 01:48:24 +02:00
parent d570cffa39
commit a817f6b48c
4 changed files with 6 additions and 6 deletions

View File

@@ -1848,7 +1848,7 @@ namespace OpenSim.Region.Framework.Scenes
{
if (m_parentScene.Permissions.CanDuplicateObject(original.Children.Count, original.UUID, AgentID, original.AbsolutePosition))
{
SceneObjectGroup copy = original.Copy(AgentID, GroupID, true);
SceneObjectGroup copy = original.Copy(true);
copy.AbsolutePosition = copy.AbsolutePosition + offset;
if (original.OwnerID != AgentID)