When the user stops a script, have it remain stopped

Previously the script state was never saved for a !Running script, so upon region restart the script would be Running again.

The use of the 'StayStopped' flag is needed because all scripts are automatically stopped when the region shuts down, but in that case we shouldn't save in their state that they're !Running.
This commit is contained in:
Oren Hurvitz
2015-08-07 16:35:32 +03:00
parent a568f06b7f
commit 59da146e9d
3 changed files with 28 additions and 3 deletions

View File

@@ -92,6 +92,11 @@ namespace OpenSim.Region.ScriptEngine.Interfaces
/// </summary>
bool ShuttingDown { get; set; }
/// <summary>
/// When stopping the script: should it remain stopped permanently (i.e., save !Running in its state)?
/// </summary>
bool StayStopped { get; set; }
/// <summary>
/// Script state
/// </summary>