diff options
author | UbitUmarov | 2017-10-30 19:06:17 +0000 |
---|---|---|
committer | UbitUmarov | 2017-10-30 19:06:17 +0000 |
commit | 39d1426f27b8e1788d8b98f512eb2a6c9f77c4db (patch) | |
tree | a66a3169e1172b7c5c6955eb873ff5ac84607a70 /OpenSim/Region/ClientStack | |
parent | Merge branch 'master' into httptests (diff) | |
parent | mantis 8258: also limit mesh basic shape torus hole sizeY on (some) existent... (diff) | |
download | opensim-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.cs | 3 |
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 | { |