aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
diff options
context:
space:
mode:
authorteravus2013-09-16 16:49:46 -0500
committerteravus2013-09-16 16:49:46 -0500
commitc4b0f172a12320919566c74aecd4e3f144f18a4e (patch)
treed1d376cf049f6f1af7a701edc500433c35872a56 /OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
parent* This fixes the border crossing offsets by storing the final keyframe locati... (diff)
parentMerge branch 'avination-current' into careminster (diff)
downloadopensim-SC_OLD-c4b0f172a12320919566c74aecd4e3f144f18a4e.zip
opensim-SC_OLD-c4b0f172a12320919566c74aecd4e3f144f18a4e.tar.gz
opensim-SC_OLD-c4b0f172a12320919566c74aecd4e3f144f18a4e.tar.bz2
opensim-SC_OLD-c4b0f172a12320919566c74aecd4e3f144f18a4e.tar.xz
Merge branch 'master' of careminster:/var/git/careminster
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index dc28be8..36edd0b 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -4004,6 +4004,18 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4004 part.Shape.ProfileHollow = 27500; 4004 part.Shape.ProfileHollow = 27500;
4005 } 4005 }
4006 } 4006 }
4007 else if (update.Entity is ScenePresence)
4008 {
4009 ScenePresence presence = (ScenePresence)update.Entity;
4010
4011 // If ParentUUID is not UUID.Zero and ParentID is 0, this
4012 // avatar is in the process of crossing regions while
4013 // sat on an object. In this state, we don't want any
4014 // updates because they will visually orbit the avatar.
4015 // Update will be forced once crossing is completed anyway.
4016 if (presence.ParentUUID != UUID.Zero && presence.ParentID == 0)
4017 continue;
4018 }
4007 4019
4008 ++updatesThisCall; 4020 ++updatesThisCall;
4009 4021