diff options
author | Teravus Ovares (Dan Olivares) | 2009-08-25 17:36:04 -0400 |
---|---|---|
committer | Teravus Ovares (Dan Olivares) | 2009-08-25 17:36:04 -0400 |
commit | 5f794d3e599c45d37fed508de24216c8888a2fba (patch) | |
tree | d67bf3f91fc0ae4bf16552e31d5249249d71be6c /OpenSim/Framework | |
parent | Merge branch 'master' of ssh://MyConnection/var/git/opensim (diff) | |
download | opensim-SC_OLD-5f794d3e599c45d37fed508de24216c8888a2fba.zip opensim-SC_OLD-5f794d3e599c45d37fed508de24216c8888a2fba.tar.gz opensim-SC_OLD-5f794d3e599c45d37fed508de24216c8888a2fba.tar.bz2 opensim-SC_OLD-5f794d3e599c45d37fed508de24216c8888a2fba.tar.xz |
A slightly modified version of
http://opensimulator.org/mantis/view.php?id=4040 by jhurliman. The patch didn't match up, so I winged it here. My effort to manually merge the patch seems to make sense, so I'm going to commit it.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/AvatarAppearance.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/AvatarAppearance.cs b/OpenSim/Framework/AvatarAppearance.cs index 1fb01ba..940ae3b 100644 --- a/OpenSim/Framework/AvatarAppearance.cs +++ b/OpenSim/Framework/AvatarAppearance.cs | |||
@@ -510,6 +510,13 @@ namespace OpenSim.Framework | |||
510 | if (te != null && te.Length > 0) | 510 | if (te != null && te.Length > 0) |
511 | Texture = new Primitive.TextureEntry(te, 0, te.Length); | 511 | Texture = new Primitive.TextureEntry(te, 0, te.Length); |
512 | } | 512 | } |
513 | else | ||
514 | { | ||
515 | // We shouldn't be receiving appearance hashtables without a TextureEntry, | ||
516 | // but in case we do this will prevent a failure when saving to the database | ||
517 | Texture = GetDefaultTexture(); | ||
518 | } | ||
519 | |||
513 | 520 | ||
514 | AvatarHeight = (float)Convert.ToDouble((string)h["avatar_height"]); | 521 | AvatarHeight = (float)Convert.ToDouble((string)h["avatar_height"]); |
515 | 522 | ||