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

This commit is contained in:
Teravus Ovares
2008-01-25 18:12:08 +00:00
parent f5340b6470
commit f96d6ea2cd

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