mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
fix for questions.
This commit is contained in:
parent
63c87fdbb6
commit
ba4d44eb67
@ -550,7 +550,6 @@ namespace MWDialogue
|
||||
|
||||
void DialogueManager::parseText(std::string text)
|
||||
{
|
||||
std::cout << "PARSE";
|
||||
std::list<std::string>::iterator it;
|
||||
for(it = actorKnownTopics.begin();it != actorKnownTopics.end();it++)
|
||||
{
|
||||
@ -786,8 +785,9 @@ namespace MWDialogue
|
||||
if(found)
|
||||
{
|
||||
for (std::vector<ESM::DialInfo>::const_iterator iter2 = iter;
|
||||
iter2!=ndialogue.mInfo.begin(); --iter2)
|
||||
iter2!=ndialogue.mInfo.begin();)
|
||||
{
|
||||
--iter2;
|
||||
if (isMatching (mActor, *iter2) && functionFilter(mActor,*iter2,true))
|
||||
{
|
||||
mChoiceMap.clear();
|
||||
|
Loading…
Reference in New Issue
Block a user