aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/AvatarFactory
diff options
context:
space:
mode:
authorUbitUmarov2014-08-11 00:44:34 +0100
committerUbitUmarov2014-08-11 00:44:34 +0100
commit9217d5ca315f4d0bc5b7803e0ca676217cf09ab9 (patch)
treeb3094798702ccdfe32c264ed3c458e58923a77d9 /OpenSim/Region/CoreModules/Avatar/AvatarFactory
parentvalidatebaked still not ok (diff)
downloadopensim-SC_OLD-9217d5ca315f4d0bc5b7803e0ca676217cf09ab9.zip
opensim-SC_OLD-9217d5ca315f4d0bc5b7803e0ca676217cf09ab9.tar.gz
opensim-SC_OLD-9217d5ca315f4d0bc5b7803e0ca676217cf09ab9.tar.bz2
opensim-SC_OLD-9217d5ca315f4d0bc5b7803e0ca676217cf09ab9.tar.xz
will get there..
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/AvatarFactory')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs b/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs
index a9aa7c4..330ed56 100644
--- a/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs
+++ b/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs
@@ -556,11 +556,10 @@ namespace OpenSim.Region.CoreModules.Avatar.AvatarFactory
556 face = sp.Appearance.Texture.FaceTextures[idx]; 556 face = sp.Appearance.Texture.FaceTextures[idx];
557 557
558 // this should be removed 558 // this should be removed
559 if (face.TextureID == UUID.Zero || face.TextureID == AppearanceManager.DEFAULT_AVATAR_TEXTURE) 559 if (face.TextureID != UUID.Zero && face.TextureID != AppearanceManager.DEFAULT_AVATAR_TEXTURE)
560 {
561 defonly = false; // found a non-default texture reference 560 defonly = false; // found a non-default texture reference
562 } 561 else
563 562 hits++;
564 continue; 563 continue;
565 } 564 }
566 else 565 else