mirror of
https://github.com/opensim/opensim.git
synced 2026-07-29 04:25:36 +08:00
moved fields to properties for UserDataProfile, which was
actually a little more work than I expected given the copious use of out params.
This commit is contained in:
@@ -3100,11 +3100,11 @@ namespace OpenSim.Region.ClientStack
|
||||
{
|
||||
AvatarPropertiesUpdatePacket.PropertiesDataBlock Properties = Packet.PropertiesData;
|
||||
UserProfileData UserProfile = new UserProfileData();
|
||||
UserProfile.UUID = AgentId;
|
||||
UserProfile.profileAboutText = Helpers.FieldToUTF8String(Properties.AboutText);
|
||||
UserProfile.profileFirstText = Helpers.FieldToUTF8String(Properties.FLAboutText);
|
||||
UserProfile.profileFirstImage = Properties.FLImageID;
|
||||
UserProfile.profileImage = Properties.ImageID;
|
||||
UserProfile.Id = AgentId;
|
||||
UserProfile.ProfileAboutText = Helpers.FieldToUTF8String(Properties.AboutText);
|
||||
UserProfile.ProfileFirstText = Helpers.FieldToUTF8String(Properties.FLAboutText);
|
||||
UserProfile.ProfileFirstImage = Properties.FLImageID;
|
||||
UserProfile.ProfileImage = Properties.ImageID;
|
||||
|
||||
handlerUpdateAvatarProperties(this, UserProfile);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user