From 99b051ccbe7b0f43e8bd5cc8c0012b40e24cb752 Mon Sep 17 00:00:00 2001 From: diva Date: Sun, 22 Feb 2009 01:26:11 +0000 Subject: Addresses some issues with appearance after TPs. Appearance.Owner was not being set, and that's what's being used in SendAppearanceToOtherAgent. Mantis #3204. --- OpenSim/Grid/UserServer/UserLoginService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Grid') diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index c180565..0bec2a1 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs @@ -406,7 +406,7 @@ namespace OpenSim.Grid.UserServer else { m_log.DebugFormat("[LOGIN]: Appearance not for {0} {1}. Creating default.", user.FirstName, user.SurName); - appearance = new AvatarAppearance(); + appearance = new AvatarAppearance(user.ID); } ArrayList SendParams = new ArrayList(); -- cgit v1.1