From 169032b4a42736b3feef682fcbfd1cc1f8b159ba Mon Sep 17 00:00:00 2001 From: Tedd Hansen Date: Sat, 16 Feb 2008 07:53:02 +0000 Subject: 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 --- OpenSim/Region/ScriptEngine/Common/IScript.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region/ScriptEngine/Common/IScript.cs') 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 public interface IScript { string State { get; set; } - Executor Exec { get; } + ExecutorBase Exec { get; } string Source { get; set; } void Start(LSL_BuiltIn_Commands_Interface BuiltIn_Commands); EventQueueManager.Queue_llDetectParams_Struct llDetectParams { get; set; } -- cgit v1.1