mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-05 16:41:32 +00:00
Exit out of choice when no responses are found (Fixes #2525)
This commit is contained in:
parent
3b8b217888
commit
ac88326909
1 changed files with 6 additions and 0 deletions
|
@ -485,6 +485,12 @@ namespace MWDialogue
|
||||||
|
|
||||||
executeScript (info->mResultScript);
|
executeScript (info->mResultScript);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
mChoice = -1;
|
||||||
|
mIsInChoice = false;
|
||||||
|
MWBase::Environment::get().getWindowManager()->getDialogueWindow()->clearChoices();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue