aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorMelanie2009-12-27 16:07:13 +0000
committerMelanie2009-12-27 16:08:12 +0000
commitbca2afdb3ca73b743dfdec9a9e672efbdca87243 (patch)
tree9b82491a4300cc5dc5ff50500836d1b5a75c355f /OpenSim/Region
parentFix the spelling :/ (diff)
downloadopensim-SC_OLD-bca2afdb3ca73b743dfdec9a9e672efbdca87243.zip
opensim-SC_OLD-bca2afdb3ca73b743dfdec9a9e672efbdca87243.tar.gz
opensim-SC_OLD-bca2afdb3ca73b743dfdec9a9e672efbdca87243.tar.bz2
opensim-SC_OLD-bca2afdb3ca73b743dfdec9a9e672efbdca87243.tar.xz
One should not copy/paste so much :)
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 6a71540..f02c28b 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -4857,9 +4857,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4857 UserProfile.FirstLifeImage = Properties.FLImageID; 4857 UserProfile.FirstLifeImage = Properties.FLImageID;
4858 UserProfile.Image = Properties.ImageID; 4858 UserProfile.Image = Properties.ImageID;
4859 UserProfile.ProfileUrl = Utils.BytesToString(Properties.ProfileURL); 4859 UserProfile.ProfileUrl = Utils.BytesToString(Properties.ProfileURL);
4860 UserProfile.Flags &= ~3; 4860 UserProfile.UserFlags &= ~3;
4861 UserProfile.Flags |= Properties.AllowPublish ? 1 : 0; 4861 UserProfile.UserFlags |= Properties.AllowPublish ? 1 : 0;
4862 UserProfile.Flags |= Properties.MaturePublish ? 2 : 0; 4862 UserProfile.UserFlags |= Properties.MaturePublish ? 2 : 0;
4863 4863
4864 handlerUpdateAvatarProperties(this, UserProfile); 4864 handlerUpdateAvatarProperties(this, UserProfile);
4865 } 4865 }