aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Environment/Scenes/ScenePresence.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
index 06b4035..de3380a 100644
--- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
@@ -1225,8 +1225,11 @@ namespace OpenSim.Region.Environment.Scenes
1225 m_updateCount = 0; 1225 m_updateCount = 0;
1226 lastPhysPos = AbsolutePosition; 1226 lastPhysPos = AbsolutePosition;
1227 } 1227 }
1228 CheckForSignificantMovement(); 1228
1229 // followed suggestion from mic bowman. reversed the two lines below.
1229 CheckForBorderCrossing(); 1230 CheckForBorderCrossing();
1231 CheckForSignificantMovement(); // sends update to the modules.
1232
1230 } 1233 }
1231 } 1234 }
1232 1235