diff options
author | Tedd Hansen | 2007-08-18 23:24:38 +0000 |
---|---|---|
committer | Tedd Hansen | 2007-08-18 23:24:38 +0000 |
commit | 37446b0392ba423894952f81aa0f938d2bd2de22 (patch) | |
tree | 674be11acb7037c8d98fb6de34bd12e547a6c175 /OpenSim/Region/ScriptEngine/DotNetEngine/ScriptEngine.cs | |
parent | starting to add bits and pieces to physics prims that we will eventually need... (diff) | |
download | opensim-SC_OLD-37446b0392ba423894952f81aa0f938d2bd2de22.zip opensim-SC_OLD-37446b0392ba423894952f81aa0f938d2bd2de22.tar.gz opensim-SC_OLD-37446b0392ba423894952f81aa0f938d2bd2de22.tar.bz2 opensim-SC_OLD-37446b0392ba423894952f81aa0f938d2bd2de22.tar.xz |
Moved in-AppDomain event execution from Script to OpenSim.Region.ScriptEngine.Executor. Script no longer responsible for handling event calls to itself (and we can create reference cache in Executor).
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/ScriptEngine.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/ScriptEngine.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptEngine.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptEngine.cs index d08fc32..9b8cff0 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptEngine.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptEngine.cs | |||
@@ -72,7 +72,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine | |||
72 | myEventQueueManager = new EventQueueManager(this); | 72 | myEventQueueManager = new EventQueueManager(this); |
73 | myEventManager = new EventManager(this); | 73 | myEventManager = new EventManager(this); |
74 | myScriptManager = new ScriptManager(this); | 74 | myScriptManager = new ScriptManager(this); |
75 | myAppDomainManager = new AppDomainManager(this); | 75 | myAppDomainManager = new AppDomainManager(); |
76 | 76 | ||
77 | // Should we iterate the region for scripts that needs starting? | 77 | // Should we iterate the region for scripts that needs starting? |
78 | // Or can we assume we are loaded before anything else so we can use proper events? | 78 | // Or can we assume we are loaded before anything else so we can use proper events? |