diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index e37ad59..8da22c4 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -568,12 +568,12 @@ namespace OpenSim.Region.Environment.Scenes | |||
568 | /// </summary> | 568 | /// </summary> |
569 | /// <param name="addPacket"></param> | 569 | /// <param name="addPacket"></param> |
570 | /// <param name="ownerID"></param> | 570 | /// <param name="ownerID"></param> |
571 | public void AddNewPrim(LLUUID ownerID, LLVector3 pos, PrimitiveBaseShape shape) | 571 | public void AddNewPrim(LLUUID ownerID, LLVector3 pos, LLQuaternion rot, PrimitiveBaseShape shape) |
572 | { | 572 | { |
573 | if (PermissionsMngr.CanRezObject(ownerID, pos)) | 573 | if (PermissionsMngr.CanRezObject(ownerID, pos)) |
574 | { | 574 | { |
575 | SceneObjectGroup sceneOb = | 575 | SceneObjectGroup sceneOb = |
576 | new SceneObjectGroup(this, m_regionHandle, ownerID, PrimIDAllocate(), pos, shape); | 576 | new SceneObjectGroup(this, m_regionHandle, ownerID, PrimIDAllocate(), pos, rot, shape); |
577 | AddEntity(sceneOb); | 577 | AddEntity(sceneOb); |
578 | SceneObjectPart rootPart = sceneOb.GetChildPart(sceneOb.UUID); | 578 | SceneObjectPart rootPart = sceneOb.GetChildPart(sceneOb.UUID); |
579 | // if grass or tree, make phantom | 579 | // if grass or tree, make phantom |
@@ -1565,4 +1565,4 @@ namespace OpenSim.Region.Environment.Scenes | |||
1565 | } | 1565 | } |
1566 | } | 1566 | } |
1567 | } | 1567 | } |
1568 | } \ No newline at end of file | 1568 | } |