mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
Fix a crash in aipackage.cpp
This commit is contained in:
parent
e74ea56434
commit
bcd8190516
@ -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…
Reference in New Issue
Block a user