aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Interfaces/IScriptInstance.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Interfaces/IScriptInstance.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Interfaces/IScriptInstance.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Interfaces/IScriptInstance.cs b/OpenSim/Region/ScriptEngine/Interfaces/IScriptInstance.cs
index 35e5f18..fa2ceef 100644
--- a/OpenSim/Region/ScriptEngine/Interfaces/IScriptInstance.cs
+++ b/OpenSim/Region/ScriptEngine/Interfaces/IScriptInstance.cs
@@ -178,8 +178,9 @@ namespace OpenSim.Region.ScriptEngine.Interfaces
178 /// <param name="timeout"></param> 178 /// <param name="timeout"></param>
179 /// How many milliseconds we will wait for an existing script event to finish before 179 /// How many milliseconds we will wait for an existing script event to finish before
180 /// forcibly aborting that event. 180 /// forcibly aborting that event.
181 /// <param name="clearEventQueue">If true then the event queue is also cleared</param>
181 /// <returns>true if the script was successfully stopped, false otherwise</returns> 182 /// <returns>true if the script was successfully stopped, false otherwise</returns>
182 bool Stop(int timeout); 183 bool Stop(int timeout, bool clearEventQueue = false);
183 184
184 void SetState(string state); 185 void SetState(string state);
185 186