Merge branch 'fix_crash_ai' into 'master'

Fix a crash in aipackage.cpp

Closes #5966

See merge request OpenMW/openmw!848
pull/593/head
Petr Mikheev 4 years ago
commit b0c9f6167c

@ -15,7 +15,12 @@ namespace ESM
{
AIPackage pack;
if (esm.retSubName() == AI_CNDT) {
mList.back().mCellName = esm.getHString();
if (mList.empty())
{
esm.fail("AIPackge with an AI_CNDT applying to no cell.");
} else {
mList.back().mCellName = esm.getHString();
}
} else if (esm.retSubName() == AI_Wander) {
pack.mType = AI_Wander;
esm.getHExact(&pack.mWander, 14);

Loading…
Cancel
Save