diff options
author | UbitUmarov | 2014-08-11 00:44:34 +0100 |
---|---|---|
committer | UbitUmarov | 2014-08-11 00:44:34 +0100 |
commit | 9217d5ca315f4d0bc5b7803e0ca676217cf09ab9 (patch) | |
tree | b3094798702ccdfe32c264ed3c458e58923a77d9 /OpenSim/Region/CoreModules/Avatar | |
parent | validatebaked still not ok (diff) | |
download | opensim-SC-9217d5ca315f4d0bc5b7803e0ca676217cf09ab9.zip opensim-SC-9217d5ca315f4d0bc5b7803e0ca676217cf09ab9.tar.gz opensim-SC-9217d5ca315f4d0bc5b7803e0ca676217cf09ab9.tar.bz2 opensim-SC-9217d5ca315f4d0bc5b7803e0ca676217cf09ab9.tar.xz |
will get there..
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs | 7 |
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 |