aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authoronefang2021-08-25 23:01:26 +1000
committeronefang2021-08-25 23:01:26 +1000
commit5896f7ce4e970c4b77a62522fb8c6bfa8957d039 (patch)
treedcb4ffc9d0cbea0be8fd592848be391dd837c3e3
parentMove "Stopping all the sims'." message to before we start stopping them. (diff)
downloadopensim-SC-switch.zip
opensim-SC-switch.tar.gz
opensim-SC-switch.tar.bz2
opensim-SC-switch.tar.xz
Don't strip (OWNER) out of script error report.switch
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs b/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs
index eb00d3b..5425a24 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs
@@ -934,7 +934,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Instance
934 string text = e.InnerException.Message; 934 string text = e.InnerException.Message;
935 if(text.StartsWith("(OWNER)")) 935 if(text.StartsWith("(OWNER)"))
936 { 936 {
937 text = text.Substring(7); 937//// text = text.Substring(7);
938 toowner = true; 938 toowner = true;
939 } 939 }
940 text += "(script: " + ScriptName + 940 text += "(script: " + ScriptName +