mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 17:15:32 +00:00
Make choices trigger goodbye if Goodbye is used (fixes #3897)
This commit is contained in:
parent
fb3facde54
commit
1a354f88ac
2 changed files with 6 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
0.45.0
|
||||
------
|
||||
Feature #3897: Have Goodbye give all choices the effects of Goodbye
|
||||
Bug #4293: Faction members are not aware of faction ownerships in barter
|
||||
Bug #4426: RotateWorld behavior is incorrect
|
||||
Bug #4433: Guard behaviour is incorrect with Alarm = 0
|
||||
|
|
|
@ -635,6 +635,11 @@ namespace MWGui
|
|||
|
||||
void DialogueWindow::onChoiceActivated(int id)
|
||||
{
|
||||
if (mGoodbye)
|
||||
{
|
||||
onGoodbyeActivated();
|
||||
return;
|
||||
}
|
||||
MWBase::Environment::get().getDialogueManager()->questionAnswered(id, mCallback.get());
|
||||
updateTopics();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue