diff options
author | diva | 2009-02-22 01:26:11 +0000 |
---|---|---|
committer | diva | 2009-02-22 01:26:11 +0000 |
commit | 99b051ccbe7b0f43e8bd5cc8c0012b40e24cb752 (patch) | |
tree | f303bef4e1b7ed4d2d576c1e7fd05f7ceb644ee5 /OpenSim/Grid | |
parent | Update svn properties, add copyright headers, minor formatting cleanup. (diff) | |
download | opensim-SC_OLD-99b051ccbe7b0f43e8bd5cc8c0012b40e24cb752.zip opensim-SC_OLD-99b051ccbe7b0f43e8bd5cc8c0012b40e24cb752.tar.gz opensim-SC_OLD-99b051ccbe7b0f43e8bd5cc8c0012b40e24cb752.tar.bz2 opensim-SC_OLD-99b051ccbe7b0f43e8bd5cc8c0012b40e24cb752.tar.xz |
Addresses some issues with appearance after TPs. Appearance.Owner was not being set, and that's what's being used in SendAppearanceToOtherAgent. Mantis #3204.
Diffstat (limited to 'OpenSim/Grid')
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
406 | else | 406 | else |
407 | { | 407 | { |
408 | m_log.DebugFormat("[LOGIN]: Appearance not for {0} {1}. Creating default.", user.FirstName, user.SurName); | 408 | m_log.DebugFormat("[LOGIN]: Appearance not for {0} {1}. Creating default.", user.FirstName, user.SurName); |
409 | appearance = new AvatarAppearance(); | 409 | appearance = new AvatarAppearance(user.ID); |
410 | } | 410 | } |
411 | 411 | ||
412 | ArrayList SendParams = new ArrayList(); | 412 | ArrayList SendParams = new ArrayList(); |