aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/IScript.cs
diff options
context:
space:
mode:
authorTedd Hansen2008-02-16 07:53:02 +0000
committerTedd Hansen2008-02-16 07:53:02 +0000
commit169032b4a42736b3feef682fcbfd1cc1f8b159ba (patch)
treef452996b38d6c84c9b9c204040dab13cb3c43d77 /OpenSim/Region/ScriptEngine/Common/IScript.cs
parent* ODE Stability update 4 :D (diff)
downloadopensim-SC_OLD-169032b4a42736b3feef682fcbfd1cc1f8b159ba.zip
opensim-SC_OLD-169032b4a42736b3feef682fcbfd1cc1f8b159ba.tar.gz
opensim-SC_OLD-169032b4a42736b3feef682fcbfd1cc1f8b159ba.tar.bz2
opensim-SC_OLD-169032b4a42736b3feef682fcbfd1cc1f8b159ba.tar.xz
Fixed ScriptEngine config in OpenSim.ini.example that was out of place.
Added some info to failure on GridServices listening port so people can see what actually went wrong. Moved most of the function/event execution module to a baseclass so other execution methods (instead of reflection) can be used with custom script modules run by ScriptEngine.Common. + some accumulated patches
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/IScript.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/IScript.cs b/OpenSim/Region/ScriptEngine/Common/IScript.cs
index c392278..96c4e3c 100644
--- a/OpenSim/Region/ScriptEngine/Common/IScript.cs
+++ b/OpenSim/Region/ScriptEngine/Common/IScript.cs
@@ -33,7 +33,7 @@ namespace OpenSim.Region.ScriptEngine.Common
33 public interface IScript 33 public interface IScript
34 { 34 {
35 string State { get; set; } 35 string State { get; set; }
36 Executor Exec { get; } 36 ExecutorBase Exec { get; }
37 string Source { get; set; } 37 string Source { get; set; }
38 void Start(LSL_BuiltIn_Commands_Interface BuiltIn_Commands); 38 void Start(LSL_BuiltIn_Commands_Interface BuiltIn_Commands);
39 EventQueueManager.Queue_llDetectParams_Struct llDetectParams { get; set; } 39 EventQueueManager.Queue_llDetectParams_Struct llDetectParams { get; set; }