diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/UserManager/UserManagerBase.cs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/OpenSim/Framework/UserManager/UserManagerBase.cs b/OpenSim/Framework/UserManager/UserManagerBase.cs index af5feac..df6fbb2 100644 --- a/OpenSim/Framework/UserManager/UserManagerBase.cs +++ b/OpenSim/Framework/UserManager/UserManagerBase.cs | |||
@@ -565,10 +565,15 @@ namespace OpenSim.Framework.UserManagement | |||
565 | responseData["profile_created"] = profile.created.ToString(); | 565 | responseData["profile_created"] = profile.created.ToString(); |
566 | responseData["profile_lastlogin"] = profile.lastLogin.ToString(); | 566 | responseData["profile_lastlogin"] = profile.lastLogin.ToString(); |
567 | // Home region information | 567 | // Home region information |
568 | responseData["home_coordinates"] = profile.homeLocation.ToString(); | 568 | responseData["home_coordinates_x"] = profile.homeLocation.X.ToString(); |
569 | responseData["home_coordinates_y"] = profile.homeLocation.Y.ToString(); | ||
570 | responseData["home_coordinates_z"] = profile.homeLocation.Z.ToString(); | ||
571 | |||
569 | responseData["home_region"] = profile.homeRegion.ToString(); | 572 | responseData["home_region"] = profile.homeRegion.ToString(); |
570 | responseData["home_look"] = profile.homeLookAt.ToString(); | ||
571 | 573 | ||
574 | responseData["home_look_x"] = profile.homeLookAt.X.ToString(); | ||
575 | responseData["home_look_y"] = profile.homeLookAt.Y.ToString(); | ||
576 | responseData["home_look_z"] = profile.homeLookAt.Z.ToString(); | ||
572 | response.Value = responseData; | 577 | response.Value = responseData; |
573 | return response; | 578 | return response; |
574 | } | 579 | } |