diff options
author | Justin Clark-Casey (justincc) | 2010-04-23 19:05:32 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-04-23 19:05:32 +0100 |
commit | 5ee77886acde5292a7a527866539e7e05d63e344 (patch) | |
tree | 157df3af3bd0175bc73493688c9742312c4d7176 /OpenSim/Services/LLLoginService | |
parent | Change SQLiteNG to work with mono 2.6 and above using the Mono.Data.Sqlite.dll (diff) | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-5ee77886acde5292a7a527866539e7e05d63e344.zip opensim-SC_OLD-5ee77886acde5292a7a527866539e7e05d63e344.tar.gz opensim-SC_OLD-5ee77886acde5292a7a527866539e7e05d63e344.tar.bz2 opensim-SC_OLD-5ee77886acde5292a7a527866539e7e05d63e344.tar.xz |
Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Services/LLLoginService')
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginService.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index 7b25274..c333b5c 100644 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs | |||
@@ -405,9 +405,9 @@ namespace OpenSim.Services.LLLoginService | |||
405 | } | 405 | } |
406 | else | 406 | else |
407 | { | 407 | { |
408 | position = new Vector3(float.Parse(uriMatch.Groups["x"].Value), | 408 | position = new Vector3(float.Parse(uriMatch.Groups["x"].Value, Culture.NumberFormatInfo), |
409 | float.Parse(uriMatch.Groups["y"].Value), | 409 | float.Parse(uriMatch.Groups["y"].Value, Culture.NumberFormatInfo), |
410 | float.Parse(uriMatch.Groups["z"].Value)); | 410 | float.Parse(uriMatch.Groups["z"].Value, Culture.NumberFormatInfo)); |
411 | 411 | ||
412 | string regionName = uriMatch.Groups["region"].ToString(); | 412 | string regionName = uriMatch.Groups["region"].ToString(); |
413 | if (regionName != null) | 413 | if (regionName != null) |