Allow OSSL scripts to softfail

This commit is contained in:
Melanie Thielker
2017-01-07 22:53:46 +00:00
parent e2167716aa
commit e5244fe708
2 changed files with 4 additions and 1 deletions

View File

@@ -927,6 +927,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Instance
if(e.InnerException != null && e.InnerException is ScriptException)
{
if (e.InnerException.Message == "Softfail")
return;
string text = e.InnerException.Message +
"(script: " + ScriptName +
" event: " + data.EventName +