diff options
Diffstat (limited to 'OpenSim/Framework/Communications/UserManagerBase.cs')
-rw-r--r-- | OpenSim/Framework/Communications/UserManagerBase.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/UserManagerBase.cs b/OpenSim/Framework/Communications/UserManagerBase.cs index 51a5036..8e0b75c 100644 --- a/OpenSim/Framework/Communications/UserManagerBase.cs +++ b/OpenSim/Framework/Communications/UserManagerBase.cs | |||
@@ -598,7 +598,7 @@ namespace OpenSim.Framework.Communications | |||
598 | 598 | ||
599 | /// Appearance | 599 | /// Appearance |
600 | /// TODO: stubs for now to get us to a compiling state gently | 600 | /// TODO: stubs for now to get us to a compiling state gently |
601 | public UserAppearance GetUserAppearance(LLUUID user) | 601 | public AvatarAppearance GetUserAppearance(LLUUID user) |
602 | { | 602 | { |
603 | foreach (KeyValuePair<string, IUserData> plugin in _plugins) | 603 | foreach (KeyValuePair<string, IUserData> plugin in _plugins) |
604 | { | 604 | { |
@@ -611,10 +611,10 @@ namespace OpenSim.Framework.Communications | |||
611 | m_log.InfoFormat("[USERSTORAGE]: Unable to find user appearance {0} via {1} ({2})", user.ToString(), plugin.Key, e.ToString()); | 611 | m_log.InfoFormat("[USERSTORAGE]: Unable to find user appearance {0} via {1} ({2})", user.ToString(), plugin.Key, e.ToString()); |
612 | } | 612 | } |
613 | } | 613 | } |
614 | return new UserAppearance(); | 614 | return new AvatarAppearance(); |
615 | } | 615 | } |
616 | 616 | ||
617 | public void UpdateUserAppearance(LLUUID user, UserAppearance appearance) | 617 | public void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance) |
618 | { | 618 | { |
619 | foreach (KeyValuePair<string, IUserData> plugin in _plugins) | 619 | foreach (KeyValuePair<string, IUserData> plugin in _plugins) |
620 | { | 620 | { |