From e8acb49fefc0e567510b4058b6571599a0158b62 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sat, 3 May 2008 15:39:40 +0000 Subject: * For your fragging desire, damage enabled land works, but watch out!, life does not regenerate until you're dead! --- OpenSim/Framework/Communications/CommunicationsManager.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'OpenSim/Framework/Communications/CommunicationsManager.cs') diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs index ee0d164..2813aa0 100644 --- a/OpenSim/Framework/Communications/CommunicationsManager.cs +++ b/OpenSim/Framework/Communications/CommunicationsManager.cs @@ -259,6 +259,19 @@ namespace OpenSim.Framework.Communications } } } + public string UUIDNameRequestString(LLUUID uuid) + { + UserProfileData profileData = m_userService.GetUserProfile(uuid); + if (profileData != null) + { + //LLUUID profileId = profileData.ID; + string firstname = profileData.FirstName; + string lastname = profileData.SurName; + + return firstname + " " + lastname; + } + return "(hippos)"; + } public List GenerateAgentPickerRequestResponse(LLUUID queryID, string query) { -- cgit v1.1