diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index 06b4035b04..de3380aa1b 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs @@ -1225,8 +1225,11 @@ namespace OpenSim.Region.Environment.Scenes m_updateCount = 0; lastPhysPos = AbsolutePosition; } - CheckForSignificantMovement(); + + // followed suggestion from mic bowman. reversed the two lines below. CheckForBorderCrossing(); + CheckForSignificantMovement(); // sends update to the modules. + } }