aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneGraph.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneGraph.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneGraph.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
index 54ac792..cda0bfc 100644
--- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
@@ -1253,7 +1253,7 @@ namespace OpenSim.Region.Framework.Scenes
1253 { 1253 {
1254 if (m_parentScene.Permissions.CanMoveObject(group.UUID, remoteClient.AgentId)) 1254 if (m_parentScene.Permissions.CanMoveObject(group.UUID, remoteClient.AgentId))
1255 { 1255 {
1256 group.UpdateGroupRotation(rot); 1256 group.UpdateGroupRotationR(rot);
1257 } 1257 }
1258 } 1258 }
1259 } 1259 }
@@ -1272,7 +1272,7 @@ namespace OpenSim.Region.Framework.Scenes
1272 { 1272 {
1273 if (m_parentScene.Permissions.CanMoveObject(group.UUID, remoteClient.AgentId)) 1273 if (m_parentScene.Permissions.CanMoveObject(group.UUID, remoteClient.AgentId))
1274 { 1274 {
1275 group.UpdateGroupRotation(pos, rot); 1275 group.UpdateGroupRotationPR(pos, rot);
1276 } 1276 }
1277 } 1277 }
1278 } 1278 }
@@ -1828,7 +1828,7 @@ namespace OpenSim.Region.Framework.Scenes
1828 1828
1829 if (rot != Quaternion.Identity) 1829 if (rot != Quaternion.Identity)
1830 { 1830 {
1831 copy.UpdateGroupRotation(rot); 1831 copy.UpdateGroupRotationR(rot);
1832 } 1832 }
1833 1833
1834 copy.CreateScriptInstances(0, false, m_parentScene.DefaultScriptEngine, 0); 1834 copy.CreateScriptInstances(0, false, m_parentScene.DefaultScriptEngine, 0);