From 07b011af3aef4455ad183bf00d3eccb4ba7e69dc Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Mon, 6 Aug 2007 13:40:45 +0000 Subject: * renamed some scene to world * passing on NotImplemented from Update() --- OpenSim/Region/Environment/Scenes/Scene.cs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs') diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 4a57d13..203f831 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs @@ -115,7 +115,7 @@ namespace OpenSim.Region.Environment.Scenes #region Constructors /// - /// Creates a new World class, and a region to go with it. + /// Creates a new Scene class, and a region to go with it. /// /// Dictionary to contain client threads /// Region Handle for this region @@ -198,7 +198,7 @@ namespace OpenSim.Region.Environment.Scenes } /// - /// Performs per-frame updates on the scene, this should be the central world loop + /// Performs per-frame updates on the scene, this should be the central scene loop /// public override void Update() { @@ -232,7 +232,7 @@ namespace OpenSim.Region.Environment.Scenes // General purpose event manager m_eventManager.TriggerOnFrame(); - //backup world data + //backup scene data storageCount++; if (storageCount > 1200) //set to how often you want to backup { @@ -293,9 +293,13 @@ namespace OpenSim.Region.Environment.Scenes } } } + catch (NotImplementedException) + { + throw; + } catch (Exception e) { - MainLog.Instance.Warn("scene", "World.cs: Update() - Failed with exception " + e.ToString()); + MainLog.Instance.Error("Scene", "Update() - Failed with exception " + e.ToString()); } updateLock.ReleaseMutex(); } -- cgit v1.1