mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
Refix the fix
This commit is contained in:
@@ -5125,7 +5125,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
else if (src.Data[index] is LSL_String)
|
||||
{
|
||||
string str = ((LSL_String) src.Data[index]).m_string;
|
||||
Match m = Regex.Match(str, "^\\s*(-?+?[0-9,]+\\.?[0-9]*)");
|
||||
Match m = Regex.Match(str, "^\\s*(-?\\+?[,0-9]+\\.?[0-9]*)");
|
||||
if (m != Match.Empty)
|
||||
{
|
||||
str = m.Value;
|
||||
|
||||
Reference in New Issue
Block a user