aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden
diff options
context:
space:
mode:
authorubit2012-12-13 08:36:18 +0100
committerubit2012-12-13 08:36:18 +0100
commit3cf0d8b165748014d21027040046356bb54d03ba (patch)
tree3e30bcd648b471d47344c92d3e66dd9d6540e143 /OpenSim/Region/ClientStack/Linden
parentMerge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork (diff)
parent FIX small avatars movement on terrain. (avatar appearance getting even (diff)
downloadopensim-SC_OLD-3cf0d8b165748014d21027040046356bb54d03ba.zip
opensim-SC_OLD-3cf0d8b165748014d21027040046356bb54d03ba.tar.gz
opensim-SC_OLD-3cf0d8b165748014d21027040046356bb54d03ba.tar.bz2
opensim-SC_OLD-3cf0d8b165748014d21027040046356bb54d03ba.tar.xz
Merge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index edb1a9d..4860da0 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -5122,7 +5122,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
5122 update.PCode = (byte)PCode.Avatar; 5122 update.PCode = (byte)PCode.Avatar;
5123 update.ProfileCurve = 1; 5123 update.ProfileCurve = 1;
5124 update.PSBlock = Utils.EmptyBytes; 5124 update.PSBlock = Utils.EmptyBytes;
5125 update.Scale = new Vector3(0.45f, 0.6f, 1.9f); 5125 update.Scale = data.Appearance.AvatarSize;
5126// update.Scale.Z -= 0.2f;
5127
5126 update.Text = Utils.EmptyBytes; 5128 update.Text = Utils.EmptyBytes;
5127 update.TextColor = new byte[4]; 5129 update.TextColor = new byte[4];
5128 5130