diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index 32e9085..d7cd027 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -645,10 +645,10 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
645 | public string resolveName(LLUUID objecUUID) | 645 | public string resolveName(LLUUID objecUUID) |
646 | { | 646 | { |
647 | // try avatar username surname | 647 | // try avatar username surname |
648 | UserProfileData profile = World.CommsManager.UserService.GetUserProfile(objecUUID); | 648 | CachedUserInfo profile = World.CommsManager.UserProfileCacheService.GetUserDetails(objecUUID); |
649 | if (profile != null) | 649 | if (profile != null && profile.UserProfile != null) |
650 | { | 650 | { |
651 | string avatarname = profile.FirstName + " " + profile.SurName; | 651 | string avatarname = profile.UserProfile.FirstName + " " + profile.UserProfile.SurName; |
652 | return avatarname; | 652 | return avatarname; |
653 | } | 653 | } |
654 | // try an scene object | 654 | // try an scene object |