forked from mirror/openmw-tes3mp
Check death counts are for valid actors before loading them
This commit is contained in:
parent
f24b807edc
commit
5a5cb1a160
1 changed files with 6 additions and 3 deletions
|
@ -1767,9 +1767,12 @@ namespace MWMechanics
|
|||
while (reader.isNextSub("ID__"))
|
||||
{
|
||||
std::string id = reader.getHString();
|
||||
int count;
|
||||
reader.getHNT (count, "COUN");
|
||||
mDeathCount[id] = count;
|
||||
if (MWBase::Environment::get().getWorld()->getStore().find(id))
|
||||
{
|
||||
int count;
|
||||
reader.getHNT(count, "COUN");
|
||||
mDeathCount[id] = count;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue