mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 10:15:33 +08:00
changing UserAgentData to use properties. This caused more
grief than expected, as monodevelop doesn't like to refactor properties of properties.
This commit is contained in:
@@ -127,7 +127,7 @@ namespace OpenSim.Region.Communications.Local
|
||||
ulong currentRegion = 0;
|
||||
if (startLocationRequest == "last")
|
||||
{
|
||||
currentRegion = theUser.CurrentAgent.currentHandle;
|
||||
currentRegion = theUser.CurrentAgent.CurrentHandle;
|
||||
}
|
||||
else if (startLocationRequest == "home")
|
||||
{
|
||||
@@ -138,7 +138,7 @@ namespace OpenSim.Region.Communications.Local
|
||||
m_log.Info("[LOGIN]: Got Custom Login URL, but can't process it");
|
||||
// LocalBackEndServices can't possibly look up a region by name :(
|
||||
// TODO: Parse string in the following format: 'uri:RegionName&X&Y&Z'
|
||||
currentRegion = theUser.CurrentAgent.currentHandle;
|
||||
currentRegion = theUser.CurrentAgent.CurrentHandle;
|
||||
}
|
||||
|
||||
RegionInfo reg = m_Parent.GridService.RequestNeighbourInfo(currentRegion);
|
||||
@@ -164,8 +164,8 @@ namespace OpenSim.Region.Communications.Local
|
||||
"[CAPS]: Sending new CAPS seed url {0} to client {1}",
|
||||
response.SeedCapability, response.AgentID);
|
||||
|
||||
theUser.CurrentAgent.currentRegion = reg.RegionID;
|
||||
theUser.CurrentAgent.currentHandle = reg.RegionHandle;
|
||||
theUser.CurrentAgent.CurrentRegion = reg.RegionID;
|
||||
theUser.CurrentAgent.CurrentHandle = reg.RegionHandle;
|
||||
|
||||
LoginResponse.BuddyList buddyList = new LoginResponse.BuddyList();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user