mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-26 14:36:40 -04:00
Assume mDeathAnimationFinished is true for older save files
This commit is contained in:
parent
63784bfb50
commit
197e81206a
@ -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…
x
Reference in New Issue
Block a user