diff options
author | lbsa71 | 2009-02-07 09:45:56 +0000 |
---|---|---|
committer | lbsa71 | 2009-02-07 09:45:56 +0000 |
commit | 4d4402158e41d810e44c86c77eb146d8122198aa (patch) | |
tree | 6f82ecfb79ea3ed7b1f6b9edd55f6f8e9cf9a505 /OpenSim/Region/Communications/Local/LocalLoginService.cs | |
parent | oops spaces where tabs should be in the makefile (diff) | |
download | opensim-SC_OLD-4d4402158e41d810e44c86c77eb146d8122198aa.zip opensim-SC_OLD-4d4402158e41d810e44c86c77eb146d8122198aa.tar.gz opensim-SC_OLD-4d4402158e41d810e44c86c77eb146d8122198aa.tar.bz2 opensim-SC_OLD-4d4402158e41d810e44c86c77eb146d8122198aa.tar.xz |
Thank you dslake for a patch that:
* fixes mantis #3092: User Server sets agent starting position to passed x/y/x instead of x/y/z
Diffstat (limited to 'OpenSim/Region/Communications/Local/LocalLoginService.cs')
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalLoginService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs index c572b3b..159773b 100644 --- a/OpenSim/Region/Communications/Local/LocalLoginService.cs +++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs | |||
@@ -210,7 +210,7 @@ namespace OpenSim.Region.Communications.Local | |||
210 | else | 210 | else |
211 | { | 211 | { |
212 | theUser.CurrentAgent.Position = new Vector3(float.Parse(uriMatch.Groups["x"].Value), | 212 | theUser.CurrentAgent.Position = new Vector3(float.Parse(uriMatch.Groups["x"].Value), |
213 | float.Parse(uriMatch.Groups["y"].Value), float.Parse(uriMatch.Groups["x"].Value)); | 213 | float.Parse(uriMatch.Groups["y"].Value), float.Parse(uriMatch.Groups["z"].Value)); |
214 | } | 214 | } |
215 | } | 215 | } |
216 | response.LookAt = "[r0,r1,r0]"; | 216 | response.LookAt = "[r0,r1,r0]"; |