Experimental. Set attachment flag early on rezzing from inventory.

remotes/origin/0.6.7-post-fixes
Melanie 2009-09-01 01:53:54 +01:00
parent deee292847
commit e458a87e91
2 changed files with 3 additions and 1 deletions

View File

@ -2015,7 +2015,10 @@ namespace OpenSim.Region.Framework.Scenes
group.ResetIDs();
if (attachment)
{
group.RootPart.ObjectFlags |= (uint)PrimFlags.Phantom;
group.IsAttachment = true;
}
AddNewSceneObject(group, true);

View File

@ -38,6 +38,5 @@ namespace OpenSim.Region.ScriptEngine.Interfaces
string[] GetWarnings();
Dictionary<KeyValuePair<int, int>, KeyValuePair<int, int>>
LineMap();
object GetCompilerOutput(UUID assetID);
}
}