diff options
author | Melanie Thielker | 2008-09-02 03:43:18 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-09-02 03:43:18 +0000 |
commit | 61978649ec1642f1c0bf0a3aa6492cebefab85d3 (patch) | |
tree | 9310263acfcce74e72775baa97e094ed97d96195 /OpenSim/Region/ScriptEngine/Shared/Instance | |
parent | Y top shear accuracy improvements in circular path prim meshes (diff) | |
download | opensim-SC_OLD-61978649ec1642f1c0bf0a3aa6492cebefab85d3.zip opensim-SC_OLD-61978649ec1642f1c0bf0a3aa6492cebefab85d3.tar.gz opensim-SC_OLD-61978649ec1642f1c0bf0a3aa6492cebefab85d3.tar.bz2 opensim-SC_OLD-61978649ec1642f1c0bf0a3aa6492cebefab85d3.tar.xz |
Change some chat output functions so that text is truncated at
1000 chars to avoid the exception thrown by libomv at 1100 chars.
Change string->int conversion so it copes with non-numeric chars
after the number and no longer uses a float to parse the value.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Instance')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs b/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs index 8ce1413..6b674f3 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs | |||
@@ -517,9 +517,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Instance | |||
517 | try | 517 | try |
518 | { | 518 | { |
519 | // DISPLAY ERROR INWORLD | 519 | // DISPLAY ERROR INWORLD |
520 | string text = "Runtime error:\n" + e.ToString(); | 520 | string text = "Runtime error:\n" + e.InnerException.ToString(); |
521 | if (text.Length > 1400) | 521 | if (text.Length > 1000) |
522 | text = text.Substring(0, 1400); | 522 | text = text.Substring(0, 1000); |
523 | m_Engine.World.SimChat(Helpers.StringToField(text), | 523 | m_Engine.World.SimChat(Helpers.StringToField(text), |
524 | ChatTypeEnum.DebugChannel, 2147483647, | 524 | ChatTypeEnum.DebugChannel, 2147483647, |
525 | part.AbsolutePosition, | 525 | part.AbsolutePosition, |