diff options
author | UbitUmarov | 2019-03-27 02:04:11 +0000 |
---|---|---|
committer | UbitUmarov | 2019-03-27 02:04:11 +0000 |
commit | 83fd05f13165477b82615c74a12f08b0a2bdfb05 (patch) | |
tree | 05af4bdfde91a78325e983380b9f75ff487979cb /OpenSim/Region/Framework/Scenes | |
parent | we should be able to zeroencode compressedupdates (diff) | |
download | opensim-SC-83fd05f13165477b82615c74a12f08b0a2bdfb05.zip opensim-SC-83fd05f13165477b82615c74a12f08b0a2bdfb05.tar.gz opensim-SC-83fd05f13165477b82615c74a12f08b0a2bdfb05.tar.bz2 opensim-SC-83fd05f13165477b82615c74a12f08b0a2bdfb05.tar.xz |
timming issues on fast tp back to same region on new code
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 9a879f7..63eb29f 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -6797,7 +6797,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
6797 | } | 6797 | } |
6798 | else | 6798 | else |
6799 | { | 6799 | { |
6800 | GodController.HasMovedAway(); | 6800 | lock (m_completeMovementLock) |
6801 | { | ||
6802 | GodController.HasMovedAway(); | ||
6803 | SentInitialData = false; | ||
6804 | } | ||
6805 | |||
6801 | List<ScenePresence> allpresences = m_scene.GetScenePresences(); | 6806 | List<ScenePresence> allpresences = m_scene.GetScenePresences(); |
6802 | foreach (ScenePresence p in allpresences) | 6807 | foreach (ScenePresence p in allpresences) |
6803 | { | 6808 | { |