diff options
author | Sean Dague | 2008-04-10 14:37:17 +0000 |
---|---|---|
committer | Sean Dague | 2008-04-10 14:37:17 +0000 |
commit | ef7dfae41c728d10cfe835cb256958c354449f1b (patch) | |
tree | 98affd8fd75500ece10eb471ba405709e2d389f4 /OpenSim/Region/Communications/Local | |
parent | further renaming of properties for clarity (diff) | |
download | opensim-SC_OLD-ef7dfae41c728d10cfe835cb256958c354449f1b.zip opensim-SC_OLD-ef7dfae41c728d10cfe835cb256958c354449f1b.tar.gz opensim-SC_OLD-ef7dfae41c728d10cfe835cb256958c354449f1b.tar.bz2 opensim-SC_OLD-ef7dfae41c728d10cfe835cb256958c354449f1b.tar.xz |
changing UserAgentData to use properties. This caused more
grief than expected, as monodevelop doesn't like to refactor
properties of properties.
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 8895c6e..4aad93c 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.CurrentHandle; |
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.CurrentHandle; |
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.CurrentRegion = reg.RegionID; |
168 | theUser.CurrentAgent.currentHandle = reg.RegionHandle; | 168 | theUser.CurrentAgent.CurrentHandle = reg.RegionHandle; |
169 | 169 | ||
170 | LoginResponse.BuddyList buddyList = new LoginResponse.BuddyList(); | 170 | LoginResponse.BuddyList buddyList = new LoginResponse.BuddyList(); |
171 | 171 | ||