aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
diff options
context:
space:
mode:
authorKitto Flora2009-12-22 00:34:06 -0500
committerKitto Flora2009-12-22 00:34:06 -0500
commit11c4a2cfd001844332ffeba4cecbba8ea62ff6b7 (patch)
tree0dc2823877df67c4cc21ad3bdeb4dbfe08960c50 /OpenSim/Region/Framework/Interfaces/IScriptModule.cs
parentFix conflicts (diff)
parentAdd a data path for error messages (diff)
downloadopensim-SC-11c4a2cfd001844332ffeba4cecbba8ea62ff6b7.zip
opensim-SC-11c4a2cfd001844332ffeba4cecbba8ea62ff6b7.tar.gz
opensim-SC-11c4a2cfd001844332ffeba4cecbba8ea62ff6b7.tar.bz2
opensim-SC-11c4a2cfd001844332ffeba4cecbba8ea62ff6b7.tar.xz
Merge branch 'master' of ssh://3dhosting.de/var/git/careminster
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IScriptModule.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScriptModule.cs b/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
index 98efcbe..e90b300 100644
--- a/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
@@ -26,6 +26,7 @@
26 */ 26 */
27 27
28using System; 28using System;
29using System.Collections;
29using OpenMetaverse; 30using OpenMetaverse;
30 31
31namespace OpenSim.Region.Framework.Interfaces 32namespace OpenSim.Region.Framework.Interfaces
@@ -39,5 +40,7 @@ namespace OpenSim.Region.Framework.Interfaces
39 40
40 bool PostScriptEvent(UUID itemID, string name, Object[] args); 41 bool PostScriptEvent(UUID itemID, string name, Object[] args);
41 bool PostObjectEvent(UUID itemID, string name, Object[] args); 42 bool PostObjectEvent(UUID itemID, string name, Object[] args);
43
44 ArrayList GetScriptErrors(UUID itemID);
42 } 45 }
43} 46}