1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-05 19:45:33 +00:00

Merge pull request #2223 from Capostrophic/animation

Fix raki creatures in Skyrim: Home of the Nords (bug #4810)
This commit is contained in:
Bret Curtis 2019-03-08 15:25:45 +01:00 committed by GitHub
commit 1e4bbe8997
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -27,6 +27,7 @@
Bug #4800: Standing collisions are not updated immediately when an object is teleported without a cell change Bug #4800: Standing collisions are not updated immediately when an object is teleported without a cell change
Bug #4803: Stray special characters before begin statement break script compilation Bug #4803: Stray special characters before begin statement break script compilation
Bug #4804: Particle system with the "Has Sizes = false" causes an exception Bug #4804: Particle system with the "Has Sizes = false" causes an exception
Bug #4810: Raki creature broken in OpenMW
Bug #4813: Creatures with known file but no "Sound Gen Creature" assigned use default sounds Bug #4813: Creatures with known file but no "Sound Gen Creature" assigned use default sounds
Bug #4815: "Finished" journal entry with lower index doesn't close journal, SetJournalIndex closes journal Bug #4815: "Finished" journal entry with lower index doesn't close journal, SetJournalIndex closes journal
Bug #4820: Spell absorption is broken Bug #4820: Spell absorption is broken

View file

@ -842,9 +842,9 @@ namespace MWRender
if (!mAccumRoot) if (!mAccumRoot)
{ {
NodeMap::const_iterator found = nodeMap.find("root bone"); NodeMap::const_iterator found = nodeMap.find("bip01");
if (found == nodeMap.end()) if (found == nodeMap.end())
found = nodeMap.find("bip01"); found = nodeMap.find("root bone");
if (found != nodeMap.end()) if (found != nodeMap.end())
mAccumRoot = found->second; mAccumRoot = found->second;