mantis 9159: ignore spaces in z on cast string to vector

This commit is contained in:
UbitUmarov
2024-09-03 21:40:10 +01:00
parent 4a72e92a74
commit 565cb7bdcf
2 changed files with 38 additions and 1 deletions

View File

@@ -154,7 +154,7 @@ namespace OpenSim.Region.ScriptEngine.Shared
while (++comma < str.Length)
{
c = Unsafe.Add(ref MemoryMarshal.GetReference(str), comma);
if (c == ' ' || c == '>')
if (c == '>')
break;
}