aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorMelanie Thielker2008-09-26 20:12:11 +0000
committerMelanie Thielker2008-09-26 20:12:11 +0000
commit415520cea6b96c6755af28074d28cc4a44d245e7 (patch)
tree17e45abeb3d6dc3615bdc98e0beb3db0330530e0 /OpenSim/Region
parentThank you, idb, for a patch that implements the stubs for llGetAgentLanguage() (diff)
downloadopensim-SC_OLD-415520cea6b96c6755af28074d28cc4a44d245e7.zip
opensim-SC_OLD-415520cea6b96c6755af28074d28cc4a44d245e7.tar.gz
opensim-SC_OLD-415520cea6b96c6755af28074d28cc4a44d245e7.tar.bz2
opensim-SC_OLD-415520cea6b96c6755af28074d28cc4a44d245e7.tar.xz
Fix listeners in multi-region instances
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/AsyncCommandManager.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/AsyncCommandManager.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/AsyncCommandManager.cs
index 91ca298..c828d69 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/AsyncCommandManager.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/AsyncCommandManager.cs
@@ -196,9 +196,6 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
196 196
197 private static void DoOneCmdHandlerPass() 197 private static void DoOneCmdHandlerPass()
198 { 198 {
199 // Check Listeners
200 m_Listener[m_ScriptEngines[0]].CheckListeners();
201
202 // Check HttpRequests 199 // Check HttpRequests
203 m_HttpRequest[m_ScriptEngines[0]].CheckHttpRequests(); 200 m_HttpRequest[m_ScriptEngines[0]].CheckHttpRequests();
204 201
@@ -207,6 +204,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
207 204
208 foreach (IEventReceiver s in m_ScriptEngines) 205 foreach (IEventReceiver s in m_ScriptEngines)
209 { 206 {
207 // Check Listeners
208 m_Listener[s].CheckListeners();
209
210 // Check timers 210 // Check timers
211 m_Timer[s].CheckTimerEvents(); 211 m_Timer[s].CheckTimerEvents();
212 212