aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMelanie2012-03-26 03:32:30 +0100
committerMelanie2012-03-26 03:33:39 +0100
commit98a6c789430bdaba73b5008c1630b37793ee2c5b (patch)
tree03e0c19f0beacbe70d65f44f3845e6c87198e9ca
parentFurther simplify ScriptComms (diff)
downloadopensim-SC_OLD-98a6c789430bdaba73b5008c1630b37793ee2c5b.zip
opensim-SC_OLD-98a6c789430bdaba73b5008c1630b37793ee2c5b.tar.gz
opensim-SC_OLD-98a6c789430bdaba73b5008c1630b37793ee2c5b.tar.bz2
opensim-SC_OLD-98a6c789430bdaba73b5008c1630b37793ee2c5b.tar.xz
Fix the omission on the interface declaration
-rw-r--r--OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs b/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs
index 34586f5..2183c1c 100644
--- a/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs
+++ b/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs
@@ -46,7 +46,7 @@ namespace OpenSim.Region.Framework.Interfaces
46 /// </summary> 46 /// </summary>
47 event ScriptCommand OnScriptCommand; 47 event ScriptCommand OnScriptCommand;
48 48
49 void RegisterScriptInvocation(object target, MethodInfo mi); 49 void RegisterScriptInvocation(object target, string method);
50 Delegate[] GetScriptInvocationList(); 50 Delegate[] GetScriptInvocationList();
51 51
52 Delegate LookupScriptInvocation(string fname); 52 Delegate LookupScriptInvocation(string fname);