One should not copy/paste so much :)

avinationmerge
Melanie 2009-12-27 16:07:13 +00:00
parent d321d23afe
commit 045a44b1af
1 changed files with 3 additions and 3 deletions

View File

@ -4840,9 +4840,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
UserProfile.FirstLifeImage = Properties.FLImageID;
UserProfile.Image = Properties.ImageID;
UserProfile.ProfileUrl = Utils.BytesToString(Properties.ProfileURL);
UserProfile.Flags &= ~3;
UserProfile.Flags |= Properties.AllowPublish ? 1 : 0;
UserProfile.Flags |= Properties.MaturePublish ? 2 : 0;
UserProfile.UserFlags &= ~3;
UserProfile.UserFlags |= Properties.AllowPublish ? 1 : 0;
UserProfile.UserFlags |= Properties.MaturePublish ? 2 : 0;
handlerUpdateAvatarProperties(this, UserProfile);
}