Fix SceneManager to use the new automatic property throughout.
parent
8d9bfda727
commit
cc504eb0d1
|
@ -100,7 +100,6 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
}
|
}
|
||||||
|
|
||||||
private readonly DoubleDictionary<UUID, string, Scene> m_localScenes = new DoubleDictionary<UUID, string, Scene>();
|
private readonly DoubleDictionary<UUID, string, Scene> m_localScenes = new DoubleDictionary<UUID, string, Scene>();
|
||||||
private Scene m_currentScene = null;
|
|
||||||
|
|
||||||
public List<Scene> Scenes
|
public List<Scene> Scenes
|
||||||
{
|
{
|
||||||
|
@ -354,7 +353,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
|
|
||||||
if (m_localScenes.TryGetValue(regionName, out s))
|
if (m_localScenes.TryGetValue(regionName, out s))
|
||||||
{
|
{
|
||||||
m_currentScene = s;
|
CurrentScene = s;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -370,7 +369,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
|
|
||||||
if (m_localScenes.TryGetValue(regionID, out s))
|
if (m_localScenes.TryGetValue(regionID, out s))
|
||||||
{
|
{
|
||||||
m_currentScene = s;
|
CurrentScene = s;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue