diff options
author | onefang | 2021-08-25 23:01:26 +1000 |
---|---|---|
committer | onefang | 2021-08-25 23:01:26 +1000 |
commit | 5896f7ce4e970c4b77a62522fb8c6bfa8957d039 (patch) | |
tree | dcb4ffc9d0cbea0be8fd592848be391dd837c3e3 /OpenSim | |
parent | Move "Stopping all the sims'." message to before we start stopping them. (diff) | |
download | opensim-SC-5896f7ce4e970c4b77a62522fb8c6bfa8957d039.zip opensim-SC-5896f7ce4e970c4b77a62522fb8c6bfa8957d039.tar.gz opensim-SC-5896f7ce4e970c4b77a62522fb8c6bfa8957d039.tar.bz2 opensim-SC-5896f7ce4e970c4b77a62522fb8c6bfa8957d039.tar.xz |
Don't strip (OWNER) out of script error report.switch
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs | 2 |
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 + |