diff options
author | mingchen | 2007-07-06 20:40:03 +0000 |
---|---|---|
committer | mingchen | 2007-07-06 20:40:03 +0000 |
commit | bc02ddf5231d7731af33cc0aa5dc914cbdeb5ee7 (patch) | |
tree | c2034371669c04d1130b6ed0d7309855f2860d8d /OpenSim/Framework/UserManager | |
parent | *Fixed 2 small references to localhost which has some conflicts when resolving. (diff) | |
download | opensim-SC_OLD-bc02ddf5231d7731af33cc0aa5dc914cbdeb5ee7.zip opensim-SC_OLD-bc02ddf5231d7731af33cc0aa5dc914cbdeb5ee7.tar.gz opensim-SC_OLD-bc02ddf5231d7731af33cc0aa5dc914cbdeb5ee7.tar.bz2 opensim-SC_OLD-bc02ddf5231d7731af33cc0aa5dc914cbdeb5ee7.tar.xz |
*Fixed several bugs that crashed the viewer and opensim server when logging in on grid mode
*Note: Grid Mode now works in sugilite, but is still unstable
**Known bug in which the grid server crashes after being relaunched from a previously create configuration
**Crashing of the viewer crashes the OpenSim server which then crashes the grid server -- needs better handling of exceptions
**Multiple sims is still untested, but should connect correctly. Moving between the sims may be a different story
Diffstat (limited to 'OpenSim/Framework/UserManager')
-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 | } |