diff options
author | Melanie | 2010-10-29 20:40:48 +0100 |
---|---|---|
committer | Melanie | 2010-10-29 20:40:48 +0100 |
commit | 9331898c320d7d6046c6d1ad467cdee0e32c8b71 (patch) | |
tree | 917ff7facdeb38d96f5f69576a134cbad4776eae /OpenSim/Services/LLLoginService/LLLoginService.cs | |
parent | Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff) | |
parent | Merge branch 'dev-appearance' (diff) | |
download | opensim-SC-9331898c320d7d6046c6d1ad467cdee0e32c8b71.zip opensim-SC-9331898c320d7d6046c6d1ad467cdee0e32c8b71.tar.gz opensim-SC-9331898c320d7d6046c6d1ad467cdee0e32c8b71.tar.bz2 opensim-SC-9331898c320d7d6046c6d1ad467cdee0e32c8b71.tar.xz |
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Services/LLLoginService/LLLoginService.cs')
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginService.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index 6c66414..1d3c412 100644 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs | |||
@@ -336,10 +336,10 @@ namespace OpenSim.Services.LLLoginService | |||
336 | // | 336 | // |
337 | // Get the avatar | 337 | // Get the avatar |
338 | // | 338 | // |
339 | AvatarData avatar = null; | 339 | AvatarAppearance avatar = null; |
340 | if (m_AvatarService != null) | 340 | if (m_AvatarService != null) |
341 | { | 341 | { |
342 | avatar = m_AvatarService.GetAvatar(account.PrincipalID); | 342 | avatar = m_AvatarService.GetAppearance(account.PrincipalID); |
343 | } | 343 | } |
344 | 344 | ||
345 | // | 345 | // |
@@ -607,7 +607,7 @@ namespace OpenSim.Services.LLLoginService | |||
607 | } | 607 | } |
608 | } | 608 | } |
609 | 609 | ||
610 | protected AgentCircuitData LaunchAgentAtGrid(GridRegion gatekeeper, GridRegion destination, UserAccount account, AvatarData avatar, | 610 | protected AgentCircuitData LaunchAgentAtGrid(GridRegion gatekeeper, GridRegion destination, UserAccount account, AvatarAppearance avatar, |
611 | UUID session, UUID secureSession, Vector3 position, string currentWhere, string viewer, string channel, string mac, string id0, | 611 | UUID session, UUID secureSession, Vector3 position, string currentWhere, string viewer, string channel, string mac, string id0, |
612 | IPEndPoint clientIP, out string where, out string reason, out GridRegion dest) | 612 | IPEndPoint clientIP, out string where, out string reason, out GridRegion dest) |
613 | { | 613 | { |
@@ -703,14 +703,14 @@ namespace OpenSim.Services.LLLoginService | |||
703 | } | 703 | } |
704 | 704 | ||
705 | private AgentCircuitData MakeAgent(GridRegion region, UserAccount account, | 705 | private AgentCircuitData MakeAgent(GridRegion region, UserAccount account, |
706 | AvatarData avatar, UUID session, UUID secureSession, uint circuit, Vector3 position, | 706 | AvatarAppearance avatar, UUID session, UUID secureSession, uint circuit, Vector3 position, |
707 | string ipaddress, string viewer, string channel, string mac, string id0) | 707 | string ipaddress, string viewer, string channel, string mac, string id0) |
708 | { | 708 | { |
709 | AgentCircuitData aCircuit = new AgentCircuitData(); | 709 | AgentCircuitData aCircuit = new AgentCircuitData(); |
710 | 710 | ||
711 | aCircuit.AgentID = account.PrincipalID; | 711 | aCircuit.AgentID = account.PrincipalID; |
712 | if (avatar != null) | 712 | if (avatar != null) |
713 | aCircuit.Appearance = avatar.ToAvatarAppearance(account.PrincipalID); | 713 | aCircuit.Appearance = new AvatarAppearance(avatar); |
714 | else | 714 | else |
715 | aCircuit.Appearance = new AvatarAppearance(account.PrincipalID); | 715 | aCircuit.Appearance = new AvatarAppearance(account.PrincipalID); |
716 | 716 | ||