diff options
author | UbitUmarov | 2017-07-22 02:04:02 +0100 |
---|---|---|
committer | UbitUmarov | 2017-07-22 02:04:02 +0100 |
commit | 3ae210d36f22b139b082fd6a691cf7f89df2d8f6 (patch) | |
tree | 8a4f457656a274193425097cd5a841749933deb3 | |
parent | ubOde: remove some dead code (diff) | |
download | opensim-SC-3ae210d36f22b139b082fd6a691cf7f89df2d8f6.zip opensim-SC-3ae210d36f22b139b082fd6a691cf7f89df2d8f6.tar.gz opensim-SC-3ae210d36f22b139b082fd6a691cf7f89df2d8f6.tar.bz2 opensim-SC-3ae210d36f22b139b082fd6a691cf7f89df2d8f6.tar.xz |
ubOde: let small spheres still be spheres
-rw-r--r-- | OpenSim/Region/PhysicsModules/ubOde/ODEPrim.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/PhysicsModules/ubOde/ODEPrim.cs b/OpenSim/Region/PhysicsModules/ubOde/ODEPrim.cs index b191dbc..aa208e2 100644 --- a/OpenSim/Region/PhysicsModules/ubOde/ODEPrim.cs +++ b/OpenSim/Region/PhysicsModules/ubOde/ODEPrim.cs | |||
@@ -1755,7 +1755,7 @@ namespace OpenSim.Region.PhysicsModule.ubOde | |||
1755 | { | 1755 | { |
1756 | IntPtr geo = IntPtr.Zero; | 1756 | IntPtr geo = IntPtr.Zero; |
1757 | 1757 | ||
1758 | if (!OverrideToBox && _pbs.ProfileShape == ProfileShape.HalfCircle && _pbs.PathCurve == (byte)Extrusion.Curve1 | 1758 | if (_pbs.ProfileShape == ProfileShape.HalfCircle && _pbs.PathCurve == (byte)Extrusion.Curve1 |
1759 | && _size.X == _size.Y && _size.Y == _size.Z) | 1759 | && _size.X == _size.Y && _size.Y == _size.Z) |
1760 | { // it's a sphere | 1760 | { // it's a sphere |
1761 | try | 1761 | try |