diff options
author | opensim | 2009-09-30 18:51:02 +0200 |
---|---|---|
committer | opensim | 2009-09-30 18:51:02 +0200 |
commit | 827b0fb1993c6f9b1289931a1ac38ff2b810952c (patch) | |
tree | 3c5e7b7fe5b21fdf159d64f1264a9d41ceac7b69 /OpenSim/Region/Framework/Scenes/SceneGraph.cs | |
parent | Finish the (untested) authentication connector (diff) | |
download | opensim-SC_OLD-827b0fb1993c6f9b1289931a1ac38ff2b810952c.zip opensim-SC_OLD-827b0fb1993c6f9b1289931a1ac38ff2b810952c.tar.gz opensim-SC_OLD-827b0fb1993c6f9b1289931a1ac38ff2b810952c.tar.bz2 opensim-SC_OLD-827b0fb1993c6f9b1289931a1ac38ff2b810952c.tar.xz |
Commit initial version of KittoFlora's vehicle changes
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneGraph.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneGraph.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs index 48dea07..09116fa 100644 --- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs | |||
@@ -1236,7 +1236,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1236 | { | 1236 | { |
1237 | if (m_parentScene.Permissions.CanMoveObject(group.UUID, remoteClient.AgentId)) | 1237 | if (m_parentScene.Permissions.CanMoveObject(group.UUID, remoteClient.AgentId)) |
1238 | { | 1238 | { |
1239 | group.UpdateGroupRotation(rot); | 1239 | group.UpdateGroupRotationR(rot); |
1240 | } | 1240 | } |
1241 | } | 1241 | } |
1242 | } | 1242 | } |
@@ -1255,7 +1255,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1255 | { | 1255 | { |
1256 | if (m_parentScene.Permissions.CanMoveObject(group.UUID, remoteClient.AgentId)) | 1256 | if (m_parentScene.Permissions.CanMoveObject(group.UUID, remoteClient.AgentId)) |
1257 | { | 1257 | { |
1258 | group.UpdateGroupRotation(pos, rot); | 1258 | group.UpdateGroupRotationPR(pos, rot); |
1259 | } | 1259 | } |
1260 | } | 1260 | } |
1261 | } | 1261 | } |
@@ -1811,7 +1811,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1811 | 1811 | ||
1812 | if (rot != Quaternion.Identity) | 1812 | if (rot != Quaternion.Identity) |
1813 | { | 1813 | { |
1814 | copy.UpdateGroupRotation(rot); | 1814 | copy.UpdateGroupRotationR(rot); |
1815 | } | 1815 | } |
1816 | 1816 | ||
1817 | copy.CreateScriptInstances(0, false, m_parentScene.DefaultScriptEngine, 0); | 1817 | copy.CreateScriptInstances(0, false, m_parentScene.DefaultScriptEngine, 0); |