* Resolve mantis 849

* Scripts in prims within linksets can now be properly edited using the 'edit linked parts' linden ui option
This commit is contained in:
Justin Clarke Casey
2008-04-03 13:33:46 +00:00
parent fe14d65f07
commit 6ef4f1bdae
7 changed files with 21 additions and 10 deletions

View File

@@ -1081,11 +1081,12 @@ namespace OpenSim.Region.Environment.Scenes
}
/// <summary>
///
/// Initial method invoked when we receive a link objects request from the client.
/// </summary>
/// <param name="client"></param>
/// <param name="parentPrim"></param>
/// <param name="childPrims"></param>
public void LinkObjects(uint parentPrim, List<uint> childPrims)
public void LinkObjects(IClientAPI client, uint parentPrim, List<uint> childPrims)
{
List<EntityBase> EntityList = GetEntities();
@@ -1124,6 +1125,10 @@ namespace OpenSim.Region.Environment.Scenes
{
parenPrim.LinkToGroup(sceneObj);
}
// We need to explicitly resend the newly link prim's object properties since no other actions
// occur on link to invoke this elsewhere (such as object selection)
parenPrim.GetProperties(client);
}
/// <summary>