forked from teamnwah/openmw-tes3coop
Merge pull request #1460 from AnyOldName3/invalid-death-count-cleaning
Check death counts are for valid actors before loading them
This commit is contained in:
commit
a560841705
1 changed files with 3 additions and 2 deletions
|
@ -1768,8 +1768,9 @@ namespace MWMechanics
|
|||
{
|
||||
std::string id = reader.getHString();
|
||||
int count;
|
||||
reader.getHNT (count, "COUN");
|
||||
mDeathCount[id] = count;
|
||||
reader.getHNT(count, "COUN");
|
||||
if (MWBase::Environment::get().getWorld()->getStore().find(id))
|
||||
mDeathCount[id] = count;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue