mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-06 18:15:32 +00:00
Use ciEqual to determine actor-specific answers
This commit is contained in:
parent
4c4218f70d
commit
1a1085272a
1 changed files with 1 additions and 1 deletions
|
@ -343,7 +343,7 @@ namespace MWDialogue
|
||||||
if(!inJournal(topicId, answer->mId))
|
if(!inJournal(topicId, answer->mId))
|
||||||
{
|
{
|
||||||
// Does this dialogue contains some actor-specific answer?
|
// Does this dialogue contains some actor-specific answer?
|
||||||
if (answer->mActor == mActor.getCellRef().getRefId())
|
if (Misc::StringUtils::ciEqual(answer->mActor, mActor.getCellRef().getRefId()))
|
||||||
flag |= MWBase::DialogueManager::TopicType::Specific;
|
flag |= MWBase::DialogueManager::TopicType::Specific;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue