diff options
author | Melanie | 2009-12-27 16:07:13 +0000 |
---|---|---|
committer | Melanie | 2009-12-27 16:07:59 +0000 |
commit | 045a44b1afb8a72da922eaea7b4d0ca1833bc9dd (patch) | |
tree | b339ca33e159db847b7f8ff25e3042736203ab12 | |
parent | Fix the spelling :/ (diff) | |
download | opensim-SC_OLD-045a44b1afb8a72da922eaea7b4d0ca1833bc9dd.zip opensim-SC_OLD-045a44b1afb8a72da922eaea7b4d0ca1833bc9dd.tar.gz opensim-SC_OLD-045a44b1afb8a72da922eaea7b4d0ca1833bc9dd.tar.bz2 opensim-SC_OLD-045a44b1afb8a72da922eaea7b4d0ca1833bc9dd.tar.xz |
One should not copy/paste so much :)
-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 | } |