aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorTeravus Ovares2008-05-29 16:36:11 +0000
committerTeravus Ovares2008-05-29 16:36:11 +0000
commit61c7130341a8b986aad678a9d06632e40c395859 (patch)
tree433f6c0d5976ae821df2624a3a3c692e24cc8cd5
parent* Fix string literal with URL + LLcommand(); (diff)
downloadopensim-SC_OLD-61c7130341a8b986aad678a9d06632e40c395859.zip
opensim-SC_OLD-61c7130341a8b986aad678a9d06632e40c395859.tar.gz
opensim-SC_OLD-61c7130341a8b986aad678a9d06632e40c395859.tar.bz2
opensim-SC_OLD-61c7130341a8b986aad678a9d06632e40c395859.tar.xz
* Ruling out another potential cause of zombie-ism
-rw-r--r--OpenSim/Region/Environment/Scenes/ScenePresence.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
index 6a22ddb..96adbe7 100644
--- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
@@ -1628,6 +1628,8 @@ namespace OpenSim.Region.Environment.Scenes
1628 /// </summary> 1628 /// </summary>
1629 protected void CheckForBorderCrossing() 1629 protected void CheckForBorderCrossing()
1630 { 1630 {
1631 if (IsChildAgent)
1632 return;
1631 LLVector3 pos2 = AbsolutePosition; 1633 LLVector3 pos2 = AbsolutePosition;
1632 LLVector3 vel = Velocity; 1634 LLVector3 vel = Velocity;
1633 1635