diff options
author | Teravus Ovares | 2008-01-25 18:12:08 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-01-25 18:12:08 +0000 |
commit | f96d6ea2cd352215c499d91d880743c5ea5c52fc (patch) | |
tree | 95383b6cd07b2c4df4e03e892c3e9acdcc55904e /OpenSim/Region | |
parent | * Stubbed out beginnings of a user server stress test (diff) | |
download | opensim-SC_OLD-f96d6ea2cd352215c499d91d880743c5ea5c52fc.zip opensim-SC_OLD-f96d6ea2cd352215c499d91d880743c5ea5c52fc.tar.gz opensim-SC_OLD-f96d6ea2cd352215c499d91d880743c5ea5c52fc.tar.bz2 opensim-SC_OLD-f96d6ea2cd352215c499d91d880743c5ea5c52fc.tar.xz |
Implemented a suggestion from Mic Bowman regarding border crossing and SignificantClientMovement.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/ScenePresence.cs | 5 |
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 | ||