Addresses some issues with appearance after TPs. Appearance.Owner was not being set, and that's what's being used in SendAppearanceToOtherAgent. Mantis #3204.

This commit is contained in:
diva
2009-02-22 01:26:11 +00:00
parent 551bebdc84
commit 99b051ccbe
4 changed files with 28 additions and 8 deletions

View File

@@ -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();