diff --git a/CHANGELOG.md b/CHANGELOG.md index a33fcd53c5..03a5cee139 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,7 @@ Bug #7044: Changing a class' services does not affect autocalculated NPCs Bug #7054: Quests aren't sorted by name Bug #7064: NPCs don't report crime if the player is casting offensive spells on them while sneaking + Bug #7077: OpenMW fails to load certain particle effects in .osgt format Bug #7084: Resurrecting an actor doesn't take into account base record changes Bug #7088: Deleting last save game of last character doesn't clear character name/details Bug #7092: BSA archives from higher priority directories don't take priority diff --git a/components/resource/bulletshapemanager.cpp b/components/resource/bulletshapemanager.cpp index 004c772e42..c2d38e164d 100644 --- a/components/resource/bulletshapemanager.cpp +++ b/components/resource/bulletshapemanager.cpp @@ -74,7 +74,7 @@ namespace Resource osg::ref_ptr getShape() { - if (!mTriangleMesh) + if (!mTriangleMesh || mTriangleMesh->getNumTriangles() == 0) return osg::ref_ptr(); osg::ref_ptr shape(new BulletShape);