diff options
author | Tedd Hansen | 2007-08-26 08:43:46 +0000 |
---|---|---|
committer | Tedd Hansen | 2007-08-26 08:43:46 +0000 |
commit | fda97aa3c5d24003e9b12c59cf5147fffb8206b0 (patch) | |
tree | d2386ff7ce11c5993ae235955224c23a268b6e7c /OpenSim | |
parent | Fixed bug that occurs sometimes on script unload where queued script event wa... (diff) | |
download | opensim-SC_OLD-fda97aa3c5d24003e9b12c59cf5147fffb8206b0.zip opensim-SC_OLD-fda97aa3c5d24003e9b12c59cf5147fffb8206b0.tar.gz opensim-SC_OLD-fda97aa3c5d24003e9b12c59cf5147fffb8206b0.tar.bz2 opensim-SC_OLD-fda97aa3c5d24003e9b12c59cf5147fffb8206b0.tar.xz |
Bugfix for last commit, { instead of (
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/EventQueueManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/EventQueueManager.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/EventQueueManager.cs index 9037c2a..7018dfe 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/EventQueueManager.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/EventQueueManager.cs | |||
@@ -184,7 +184,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine | |||
184 | } | 184 | } |
185 | 185 | ||
186 | } // Something in queue | 186 | } // Something in queue |
187 | } catch {ThreadAbortException tae) { | 187 | } catch (ThreadAbortException tae) { |
188 | throw tae; | 188 | throw tae; |
189 | } catch (Exception e) { | 189 | } catch (Exception e) { |
190 | Console.WriteLine("Exception in EventQueueThreadLoop: " + e.ToString()); | 190 | Console.WriteLine("Exception in EventQueueThreadLoop: " + e.ToString()); |