aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorBlueWall2011-02-13 00:30:43 -0500
committerDiva Canto2011-02-13 07:42:53 -0800
commitc75e916ccfb195554c5010ab4187c4d74b81c4e1 (patch)
tree30c227ffe6a63e5776e1648f1f14757094c3f497
parentFix and simplify QBasedComparer. (diff)
downloadopensim-SC_OLD-c75e916ccfb195554c5010ab4187c4d74b81c4e1.zip
opensim-SC_OLD-c75e916ccfb195554c5010ab4187c4d74b81c4e1.tar.gz
opensim-SC_OLD-c75e916ccfb195554c5010ab4187c4d74b81c4e1.tar.bz2
opensim-SC_OLD-c75e916ccfb195554c5010ab4187c4d74b81c4e1.tar.xz
Set filter to send proper rotations for root part
This allows the root prim, alone or in a set, to send it's rotation. This fixes unsitting the avatar on sit-offsest type teleports where the sit target is in the root prim of a linkset.
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectPart.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
index 6a92378..4d5eedf 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
@@ -2099,7 +2099,7 @@ namespace OpenSim.Region.Framework.Scenes
2099 { 2099 {
2100 Quaternion newRot; 2100 Quaternion newRot;
2101 2101
2102 if (this.LinkNum == 0) 2102 if (this.LinkNum == 0 || this.LinkNum == 1)
2103 { 2103 {
2104 newRot = RotationOffset; 2104 newRot = RotationOffset;
2105 } 2105 }