aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/Local/LocalLoginService.cs
diff options
context:
space:
mode:
authorlbsa712009-02-07 09:45:56 +0000
committerlbsa712009-02-07 09:45:56 +0000
commit4d4402158e41d810e44c86c77eb146d8122198aa (patch)
tree6f82ecfb79ea3ed7b1f6b9edd55f6f8e9cf9a505 /OpenSim/Region/Communications/Local/LocalLoginService.cs
parentoops spaces where tabs should be in the makefile (diff)
downloadopensim-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 '')
-rw-r--r--OpenSim/Region/Communications/Local/LocalLoginService.cs2
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]";