diff options
author | Charles Krinke | 2007-12-16 21:21:44 +0000 |
---|---|---|
committer | Charles Krinke | 2007-12-16 21:21:44 +0000 |
commit | b56c61ce0a4e7d8a81e05318fae6f66a6d7093b3 (patch) | |
tree | 3a3c0431d28194f76b013a305f9119369cada52b | |
parent | *Access/Ban list now copies correctly to a new parcel after a subdivision occ... (diff) | |
download | opensim-SC_OLD-b56c61ce0a4e7d8a81e05318fae6f66a6d7093b3.zip opensim-SC_OLD-b56c61ce0a4e7d8a81e05318fae6f66a6d7093b3.tar.gz opensim-SC_OLD-b56c61ce0a4e7d8a81e05318fae6f66a6d7093b3.tar.bz2 opensim-SC_OLD-b56c61ce0a4e7d8a81e05318fae6f66a6d7093b3.tar.xz |
Comment out an unneeded "Home Location" message.
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index 041cc88..6b5d3ff 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -70,7 +70,8 @@ namespace OpenSim.Grid.UserServer | |||
70 | m_config.GridSendKey, m_config.GridRecvKey); | 70 | m_config.GridSendKey, m_config.GridRecvKey); |
71 | 71 | ||
72 | // Customise the response | 72 | // Customise the response |
73 | MainLog.Instance.Verbose("LOGIN", "Home Location"); | 73 | //CFK: This is redundant and the next message should always appear. |
74 | //CFK: MainLog.Instance.Verbose("LOGIN", "Home Location"); | ||
74 | response.Home = "{'region_handle':[r" + (SimInfo.regionLocX * 256).ToString() + ",r" + | 75 | response.Home = "{'region_handle':[r" + (SimInfo.regionLocX * 256).ToString() + ",r" + |
75 | (SimInfo.regionLocY * 256).ToString() + "], " + | 76 | (SimInfo.regionLocY * 256).ToString() + "], " + |
76 | "'position':[r" + theUser.homeLocation.X.ToString() + ",r" + | 77 | "'position':[r" + theUser.homeLocation.X.ToString() + ",r" + |