diff options
author | Jeff Ames | 2009-06-04 01:26:31 +0000 |
---|---|---|
committer | Jeff Ames | 2009-06-04 01:26:31 +0000 |
commit | 1e3f378c57c8447c93799fd0fff2f0cffe7d7bb4 (patch) | |
tree | e845395dbc4964aadb6960b01603a96b7d4bedc3 /OpenSim | |
parent | Ignore some generated files. (diff) | |
download | opensim-SC_OLD-1e3f378c57c8447c93799fd0fff2f0cffe7d7bb4.zip opensim-SC_OLD-1e3f378c57c8447c93799fd0fff2f0cffe7d7bb4.tar.gz opensim-SC_OLD-1e3f378c57c8447c93799fd0fff2f0cffe7d7bb4.tar.bz2 opensim-SC_OLD-1e3f378c57c8447c93799fd0fff2f0cffe7d7bb4.tar.xz |
Fix comparison of UUID with null.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Physics/Meshing/Meshmerizer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs index 225344b..253f451 100644 --- a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs +++ b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs | |||
@@ -184,7 +184,7 @@ namespace OpenSim.Region.Physics.Meshing | |||
184 | 184 | ||
185 | if (primShape.SculptEntry) | 185 | if (primShape.SculptEntry) |
186 | { | 186 | { |
187 | if (cacheSculptMaps && primShape.SculptTexture != null) | 187 | if (cacheSculptMaps && primShape.SculptTexture != UUID.Zero) |
188 | { | 188 | { |
189 | decodedSculptFileName = System.IO.Path.Combine(decodedScultMapPath, "smap_" + primShape.SculptTexture.ToString()); | 189 | decodedSculptFileName = System.IO.Path.Combine(decodedScultMapPath, "smap_" + primShape.SculptTexture.ToString()); |
190 | try | 190 | try |