Implemented a suggestion from Mic Bowman regarding border crossing and SignificantClientMovement.

ThreadPoolClientBranch
Teravus Ovares 2008-01-25 18:12:08 +00:00
parent f5340b6470
commit f96d6ea2cd
1 changed files with 4 additions and 1 deletions

View File

@ -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.
}
}