minor: improve command help on scripts suspend/resume

remove-scene-viewer
Justin Clark-Casey (justincc) 2011-10-19 21:34:55 +01:00
parent 5607fd3af8
commit f836710af5
1 changed files with 5 additions and 2 deletions

View File

@ -278,12 +278,15 @@ namespace OpenSim.Region.ScriptEngine.XEngine
MainConsole.Instance.Commands.AddCommand(
"scripts", false, "scripts suspend", "scripts suspend", "Suspend all scripts",
"Suspends all currently running scripts. This only suspends event delivery, it will not suspend a"
+ " script that is currently processing an event.",
+ " script that is currently processing an event.\n"
+ "Suspended scripts will continue to accumulate events but won't process them.",
HandleSuspendScripts);
MainConsole.Instance.Commands.AddCommand(
"scripts", false, "scripts resume", "scripts resume", "Resume all scripts",
"Resumes all currently suspended scripts", HandleResumeScripts);
"Resumes all currently suspended scripts.\n"
+ "Resumed scripts will process all events accumulated whilst suspended.",
HandleResumeScripts);
}
public void HandleShowScripts(string module, string[] cmdparams)