aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorUbitUmarov2017-10-30 19:06:17 +0000
committerUbitUmarov2017-10-30 19:06:17 +0000
commit39d1426f27b8e1788d8b98f512eb2a6c9f77c4db (patch)
treea66a3169e1172b7c5c6955eb873ff5ac84607a70 /OpenSim/Region/ClientStack
parentMerge branch 'master' into httptests (diff)
parentmantis 8258: also limit mesh basic shape torus hole sizeY on (some) existent... (diff)
downloadopensim-SC-39d1426f27b8e1788d8b98f512eb2a6c9f77c4db.zip
opensim-SC-39d1426f27b8e1788d8b98f512eb2a6c9f77c4db.tar.gz
opensim-SC-39d1426f27b8e1788d8b98f512eb2a6c9f77c4db.tar.bz2
opensim-SC-39d1426f27b8e1788d8b98f512eb2a6c9f77c4db.tar.xz
Merge branch 'master' into httptests
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index a404b1b..4a76ffc 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -5887,6 +5887,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
5887 profileBegin = 9375; 5887 profileBegin = 9375;
5888 if(profileHollow == 1) 5888 if(profileHollow == 1)
5889 profileHollow = 27500; 5889 profileHollow = 27500;
5890 // fix torus hole size Y that also confuse some viewers
5891 if(update.ProfileCurve == (byte)ProfileShape.Circle && update.PathScaleY < 150)
5892 update.PathScaleY = 150;
5890 } 5893 }
5891 else 5894 else
5892 { 5895 {