mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-21 09:09:43 +00:00
Don't use potentially invalid cache entry
This commit is contained in:
parent
d2077b5624
commit
c8a594d9d2
1 changed files with 1 additions and 2 deletions
|
@ -293,8 +293,7 @@ namespace MWDialogue
|
|||
|
||||
const ESM::Dialogue& dialogue = *dialogues.find(topic);
|
||||
|
||||
const ESM::DialInfo* info = mChoice == -1 && mActorKnownTopics.count(topic) ? mActorKnownTopics[topic].mInfo
|
||||
: filter.search(dialogue, true);
|
||||
const ESM::DialInfo* info = filter.search(dialogue, true);
|
||||
|
||||
if (info)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue