mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-24 04:43:49 +00:00
Append orphaned dialogue instead of always appending it
This commit is contained in:
parent
c7449dc272
commit
10e4eb8e8e
@ -102,10 +102,12 @@ namespace ESM
|
||||
auto it = lookup->second.first;
|
||||
|
||||
mLookup[info.mId] = std::make_pair(mInfo.insert(++it, info), isDeleted);
|
||||
return;
|
||||
}
|
||||
else
|
||||
mLookup[info.mId] = std::make_pair(mInfo.insert(mInfo.end(), info), isDeleted);
|
||||
}
|
||||
mLookup[info.mId] = std::make_pair(mInfo.insert(mInfo.begin(), info), isDeleted);
|
||||
else
|
||||
mLookup[info.mId] = std::make_pair(mInfo.insert(mInfo.begin(), info), isDeleted);
|
||||
}
|
||||
|
||||
void Dialogue::clearDeletedInfos()
|
||||
|
Loading…
x
Reference in New Issue
Block a user