diff options
author | Sean Dague | 2008-04-10 14:50:52 +0000 |
---|---|---|
committer | Sean Dague | 2008-04-10 14:50:52 +0000 |
commit | 55ac1c6dce15d768cc7240b75f903076a131c39e (patch) | |
tree | ec8ec06c14f382265228d756f89a6c1e43ded15c /OpenSim/Region/Communications/Local | |
parent | changing UserAgentData to use properties. This caused more (diff) | |
download | opensim-SC_OLD-55ac1c6dce15d768cc7240b75f903076a131c39e.zip opensim-SC_OLD-55ac1c6dce15d768cc7240b75f903076a131c39e.tar.gz opensim-SC_OLD-55ac1c6dce15d768cc7240b75f903076a131c39e.tar.bz2 opensim-SC_OLD-55ac1c6dce15d768cc7240b75f903076a131c39e.tar.xz |
renaming of attributes in UserAgentData for readability
Diffstat (limited to 'OpenSim/Region/Communications/Local')
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalLoginService.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs index 4aad93c..79bf9e5 100644 --- a/OpenSim/Region/Communications/Local/LocalLoginService.cs +++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs | |||
@@ -127,7 +127,7 @@ namespace OpenSim.Region.Communications.Local | |||
127 | ulong currentRegion = 0; | 127 | ulong currentRegion = 0; |
128 | if (startLocationRequest == "last") | 128 | if (startLocationRequest == "last") |
129 | { | 129 | { |
130 | currentRegion = theUser.CurrentAgent.CurrentHandle; | 130 | currentRegion = theUser.CurrentAgent.Handle; |
131 | } | 131 | } |
132 | else if (startLocationRequest == "home") | 132 | else if (startLocationRequest == "home") |
133 | { | 133 | { |
@@ -138,7 +138,7 @@ namespace OpenSim.Region.Communications.Local | |||
138 | m_log.Info("[LOGIN]: Got Custom Login URL, but can't process it"); | 138 | m_log.Info("[LOGIN]: Got Custom Login URL, but can't process it"); |
139 | // LocalBackEndServices can't possibly look up a region by name :( | 139 | // LocalBackEndServices can't possibly look up a region by name :( |
140 | // TODO: Parse string in the following format: 'uri:RegionName&X&Y&Z' | 140 | // TODO: Parse string in the following format: 'uri:RegionName&X&Y&Z' |
141 | currentRegion = theUser.CurrentAgent.CurrentHandle; | 141 | currentRegion = theUser.CurrentAgent.Handle; |
142 | } | 142 | } |
143 | 143 | ||
144 | RegionInfo reg = m_Parent.GridService.RequestNeighbourInfo(currentRegion); | 144 | RegionInfo reg = m_Parent.GridService.RequestNeighbourInfo(currentRegion); |
@@ -164,8 +164,8 @@ namespace OpenSim.Region.Communications.Local | |||
164 | "[CAPS]: Sending new CAPS seed url {0} to client {1}", | 164 | "[CAPS]: Sending new CAPS seed url {0} to client {1}", |
165 | response.SeedCapability, response.AgentID); | 165 | response.SeedCapability, response.AgentID); |
166 | 166 | ||
167 | theUser.CurrentAgent.CurrentRegion = reg.RegionID; | 167 | theUser.CurrentAgent.Region = reg.RegionID; |
168 | theUser.CurrentAgent.CurrentHandle = reg.RegionHandle; | 168 | theUser.CurrentAgent.Handle = reg.RegionHandle; |
169 | 169 | ||
170 | LoginResponse.BuddyList buddyList = new LoginResponse.BuddyList(); | 170 | LoginResponse.BuddyList buddyList = new LoginResponse.BuddyList(); |
171 | 171 | ||