diff options
-rw-r--r-- | OpenSim/Region/Physics/Meshing/Meshmerizer.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs index 8c9836e..5d227dc 100644 --- a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs +++ b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs | |||
@@ -215,9 +215,11 @@ namespace OpenSim.Region.Physics.Meshing | |||
215 | sculptType = PrimMesher.SculptMesh.SculptType.torus; | 215 | sculptType = PrimMesher.SculptMesh.SculptType.torus; |
216 | break; | 216 | break; |
217 | case OpenMetaverse.SculptType.Sphere: | 217 | case OpenMetaverse.SculptType.Sphere: |
218 | default: | ||
219 | sculptType = PrimMesher.SculptMesh.SculptType.sphere; | 218 | sculptType = PrimMesher.SculptMesh.SculptType.sphere; |
220 | break; | 219 | break; |
220 | default: | ||
221 | sculptType = PrimMesher.SculptMesh.SculptType.plane; | ||
222 | break; | ||
221 | } | 223 | } |
222 | 224 | ||
223 | bool mirror = ((primShape.SculptType & 128) != 0); | 225 | bool mirror = ((primShape.SculptType & 128) != 0); |