mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 10:15:33 +08:00
Had to rename Rotation in SceneObjectGroup to GroupRotation to stop conflict with Rotation in entitybase (couldn't override as they are different types (LL vs Axiom) and didn't want to add new).
When you take prims into inventory (or delete them), they should now be removed from the prim datastore, so they no longer reappear in-world when you restart opensim.
This commit is contained in:
@@ -35,12 +35,11 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
get { return 1; }
|
||||
}
|
||||
|
||||
public LLQuaternion Rotation
|
||||
public LLQuaternion GroupRotation
|
||||
{
|
||||
get { return m_rootPart.RotationOffset; }
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
@@ -538,7 +537,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
SceneObjectPart part = this.GetChildPrim(localID);
|
||||
if (part != null)
|
||||
{
|
||||
return part.PartName;
|
||||
return part.Name;
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user