diff options
author | Diva Canto | 2010-03-06 08:21:54 -0800 |
---|---|---|
committer | Diva Canto | 2010-03-06 08:21:54 -0800 |
commit | f4c165afe7003ad6276ad7d015fd1c9164a84328 (patch) | |
tree | 33274c973c23edee794964f1104fd60e02d82555 /OpenSim/Region/Framework/Scenes/Scene.cs | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC_OLD-f4c165afe7003ad6276ad7d015fd1c9164a84328.zip opensim-SC_OLD-f4c165afe7003ad6276ad7d015fd1c9164a84328.tar.gz opensim-SC_OLD-f4c165afe7003ad6276ad7d015fd1c9164a84328.tar.bz2 opensim-SC_OLD-f4c165afe7003ad6276ad7d015fd1c9164a84328.tar.xz |
Bug fix: store correct position information upon logout. Fixes mantis #4608
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 30c69a8..1eb3117 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -4216,7 +4216,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
4216 | return m_sceneGraph.GetGroupByPrim(localID); | 4216 | return m_sceneGraph.GetGroupByPrim(localID); |
4217 | } | 4217 | } |
4218 | 4218 | ||
4219 | public bool TryGetAvatar(UUID avatarId, out ScenePresence avatar) | 4219 | public override bool TryGetAvatar(UUID avatarId, out ScenePresence avatar) |
4220 | { | 4220 | { |
4221 | return m_sceneGraph.TryGetAvatar(avatarId, out avatar); | 4221 | return m_sceneGraph.TryGetAvatar(avatarId, out avatar); |
4222 | } | 4222 | } |