aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMelanie Thielker2010-08-22 16:44:22 +0200
committerMelanie Thielker2010-08-22 16:44:22 +0200
commit5c368c8d380e623185f74d32505b841f8496e510 (patch)
treed99bb8883b4fb38b128c75343a46ea1d6a47d3e3
parentProvide a better implementation of llList2Float (diff)
downloadopensim-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
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs2
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;