diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneManager.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneManager.cs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneManager.cs b/OpenSim/Region/Environment/Scenes/SceneManager.cs index e822874..1eac61b 100644 --- a/OpenSim/Region/Environment/Scenes/SceneManager.cs +++ b/OpenSim/Region/Environment/Scenes/SceneManager.cs | |||
@@ -84,7 +84,6 @@ namespace OpenSim.Region.Environment.Scenes | |||
84 | { | 84 | { |
85 | if (m_localScenes[i].Equals(cscene)) | 85 | if (m_localScenes[i].Equals(cscene)) |
86 | { | 86 | { |
87 | |||
88 | m_localScenes[i].Close(); | 87 | m_localScenes[i].Close(); |
89 | } | 88 | } |
90 | } | 89 | } |
@@ -99,7 +98,8 @@ namespace OpenSim.Region.Environment.Scenes | |||
99 | 98 | ||
100 | public void HandleRestart(RegionInfo rdata) | 99 | public void HandleRestart(RegionInfo rdata) |
101 | { | 100 | { |
102 | MainLog.Instance.Error("SCENEMANAGER", "Got Restart message for region:" + rdata.RegionName +" Sending up to main"); | 101 | MainLog.Instance.Error("SCENEMANAGER", |
102 | "Got Restart message for region:" + rdata.RegionName + " Sending up to main"); | ||
103 | int RegionSceneElement = -1; | 103 | int RegionSceneElement = -1; |
104 | for (int i = 0; i < m_localScenes.Count; i++) | 104 | for (int i = 0; i < m_localScenes.Count; i++) |
105 | { | 105 | { |
@@ -127,7 +127,6 @@ namespace OpenSim.Region.Environment.Scenes | |||
127 | 127 | ||
128 | for (int i = 0; i < m_localScenes.Count; i++) | 128 | for (int i = 0; i < m_localScenes.Count; i++) |
129 | { | 129 | { |
130 | |||
131 | if (m_localScenes[i].RegionInfo.RegionHandle == regionHandle) | 130 | if (m_localScenes[i].RegionInfo.RegionHandle == regionHandle) |
132 | { | 131 | { |
133 | // Inform other regions to tell their avatar about me | 132 | // Inform other regions to tell their avatar about me |
@@ -223,7 +222,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
223 | { | 222 | { |
224 | ForEachCurrentScene(delegate(Scene scene) { scene.Backup(); }); | 223 | ForEachCurrentScene(delegate(Scene scene) { scene.Backup(); }); |
225 | } | 224 | } |
226 | 225 | ||
227 | public void HandleAlertCommandOnCurrentScene(string[] cmdparams) | 226 | public void HandleAlertCommandOnCurrentScene(string[] cmdparams) |
228 | { | 227 | { |
229 | ForEachCurrentScene(delegate(Scene scene) { scene.HandleAlertCommand(cmdparams); }); | 228 | ForEachCurrentScene(delegate(Scene scene) { scene.HandleAlertCommand(cmdparams); }); |
@@ -423,4 +422,4 @@ namespace OpenSim.Region.Environment.Scenes | |||
423 | m_localScenes.ForEach(action); | 422 | m_localScenes.ForEach(action); |
424 | } | 423 | } |
425 | } | 424 | } |
426 | } | 425 | } \ No newline at end of file |