diff options
author | Melanie Thielker | 2010-08-22 16:44:22 +0200 |
---|---|---|
committer | Melanie Thielker | 2010-08-22 16:44:22 +0200 |
commit | 5c368c8d380e623185f74d32505b841f8496e510 (patch) | |
tree | d99bb8883b4fb38b128c75343a46ea1d6a47d3e3 /OpenSim/Region/ScriptEngine/Shared/Api | |
parent | Provide a better implementation of llList2Float (diff) | |
download | opensim-SC_OLD-5c368c8d380e623185f74d32505b841f8496e510.zip opensim-SC_OLD-5c368c8d380e623185f74d32505b841f8496e510.tar.gz opensim-SC_OLD-5c368c8d380e623185f74d32505b841f8496e510.tar.bz2 opensim-SC_OLD-5c368c8d380e623185f74d32505b841f8496e510.tar.xz |
Refix the fix
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index ca09705..5717086 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -5125,7 +5125,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
5125 | else if (src.Data[index] is LSL_String) | 5125 | else if (src.Data[index] is LSL_String) |
5126 | { | 5126 | { |
5127 | string str = ((LSL_String) src.Data[index]).m_string; | 5127 | string str = ((LSL_String) src.Data[index]).m_string; |
5128 | Match m = Regex.Match(str, "^\\s*(-?+?[0-9,]+\\.?[0-9]*)"); | 5128 | Match m = Regex.Match(str, "^\\s*(-?\\+?[,0-9]+\\.?[0-9]*)"); |
5129 | if (m != Match.Empty) | 5129 | if (m != Match.Empty) |
5130 | { | 5130 | { |
5131 | str = m.Value; | 5131 | str = m.Value; |