mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 19:19:56 +00:00
Merge remote-tracking branch 'scrawl/master'
This commit is contained in:
commit
1294682196
1 changed files with 9 additions and 8 deletions
|
@ -61,6 +61,15 @@ void Dialogue::addInfo(const ESM::DialInfo& info, bool merge)
|
|||
ESM::Dialogue::InfoContainer::iterator it = mInfo.end();
|
||||
|
||||
std::map<std::string, ESM::Dialogue::InfoContainer::iterator>::iterator lookup;
|
||||
|
||||
lookup = mLookup.find(info.mId);
|
||||
if (lookup != mLookup.end())
|
||||
{
|
||||
it = lookup->second;
|
||||
*it = info;
|
||||
return;
|
||||
}
|
||||
|
||||
lookup = mLookup.find(info.mPrev);
|
||||
if (lookup != mLookup.end())
|
||||
{
|
||||
|
@ -79,14 +88,6 @@ void Dialogue::addInfo(const ESM::DialInfo& info, bool merge)
|
|||
return;
|
||||
}
|
||||
|
||||
lookup = mLookup.find(info.mId);
|
||||
if (lookup != mLookup.end())
|
||||
{
|
||||
it = lookup->second;
|
||||
*it = info;
|
||||
return;
|
||||
}
|
||||
|
||||
std::cerr << "Failed to insert info " << info.mId << std::endl;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue