diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 8a5f209..ba81d05 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -4840,9 +4840,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4840 | UserProfile.FirstLifeImage = Properties.FLImageID; | 4840 | UserProfile.FirstLifeImage = Properties.FLImageID; |
4841 | UserProfile.Image = Properties.ImageID; | 4841 | UserProfile.Image = Properties.ImageID; |
4842 | UserProfile.ProfileUrl = Utils.BytesToString(Properties.ProfileURL); | 4842 | UserProfile.ProfileUrl = Utils.BytesToString(Properties.ProfileURL); |
4843 | UserProfile.Flags &= ~3; | 4843 | UserProfile.UserFlags &= ~3; |
4844 | UserProfile.Flags |= Properties.AllowPublish ? 1 : 0; | 4844 | UserProfile.UserFlags |= Properties.AllowPublish ? 1 : 0; |
4845 | UserProfile.Flags |= Properties.MaturePublish ? 2 : 0; | 4845 | UserProfile.UserFlags |= Properties.MaturePublish ? 2 : 0; |
4846 | 4846 | ||
4847 | handlerUpdateAvatarProperties(this, UserProfile); | 4847 | handlerUpdateAvatarProperties(this, UserProfile); |
4848 | } | 4848 | } |