forked from teamnwah/openmw-tes3coop
Assume mDeathAnimationFinished is true for older save files
This commit is contained in:
parent
63784bfb50
commit
197e81206a
1 changed files with 3 additions and 0 deletions
|
@ -23,6 +23,9 @@ void ESM::CreatureStats::load (ESMReader &esm)
|
|||
mDeathAnimationFinished = false;
|
||||
esm.getHNOT (mDeathAnimationFinished, "DFNT");
|
||||
|
||||
if (esm.getFormat() < 3 && mDead)
|
||||
mDeathAnimationFinished = true;
|
||||
|
||||
mDied = false;
|
||||
esm.getHNOT (mDied, "DIED");
|
||||
|
||||
|
|
Loading…
Reference in a new issue