diff options
author | Teravus Ovares | 2008-05-03 15:39:40 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-05-03 15:39:40 +0000 |
commit | e8acb49fefc0e567510b4058b6571599a0158b62 (patch) | |
tree | d87243f8d596b6df07db190ba30bf2da4d608c18 /OpenSim/Framework/Communications/CommunicationsManager.cs | |
parent | * Committing some collision stuffs that I'm working on. (diff) | |
download | opensim-SC_OLD-e8acb49fefc0e567510b4058b6571599a0158b62.zip opensim-SC_OLD-e8acb49fefc0e567510b4058b6571599a0158b62.tar.gz opensim-SC_OLD-e8acb49fefc0e567510b4058b6571599a0158b62.tar.bz2 opensim-SC_OLD-e8acb49fefc0e567510b4058b6571599a0158b62.tar.xz |
* For your fragging desire, damage enabled land works, but watch out!, life does not regenerate until you're dead!
Diffstat (limited to 'OpenSim/Framework/Communications/CommunicationsManager.cs')
-rw-r--r-- | OpenSim/Framework/Communications/CommunicationsManager.cs | 13 |
1 files changed, 13 insertions, 0 deletions
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 | |||
259 | } | 259 | } |
260 | } | 260 | } |
261 | } | 261 | } |
262 | public string UUIDNameRequestString(LLUUID uuid) | ||
263 | { | ||
264 | UserProfileData profileData = m_userService.GetUserProfile(uuid); | ||
265 | if (profileData != null) | ||
266 | { | ||
267 | //LLUUID profileId = profileData.ID; | ||
268 | string firstname = profileData.FirstName; | ||
269 | string lastname = profileData.SurName; | ||
270 | |||
271 | return firstname + " " + lastname; | ||
272 | } | ||
273 | return "(hippos)"; | ||
274 | } | ||
262 | 275 | ||
263 | public List<AvatarPickerAvatar> GenerateAgentPickerRequestResponse(LLUUID queryID, string query) | 276 | public List<AvatarPickerAvatar> GenerateAgentPickerRequestResponse(LLUUID queryID, string query) |
264 | { | 277 | { |