Merged pull request #1738

0.6.3
Marc Zinnschlag 7 years ago
commit 9d0ce25052

@ -6,6 +6,7 @@
Bug #4327: Missing animations during spell/weapon stance switching
Bug #4426: RotateWorld behavior is incorrect
Bug #4433: Guard behaviour is incorrect with Alarm = 0
Bug #4443: Goodbye option and dialogue choices are not mutually exclusive
Feature #4444: Per-group KF-animation files support
0.44.0

@ -430,11 +430,13 @@ namespace MWDialogue
}
void DialogueManager::addChoice (const std::string& text, int choice)
{
if (!mGoodbye)
{
mIsInChoice = true;
mChoices.push_back(std::make_pair(text, choice));
}
}
const std::vector<std::pair<std::string, int> >& DialogueManager::getChoices()
{
@ -448,7 +450,7 @@ namespace MWDialogue
void DialogueManager::goodbye()
{
mIsInChoice = false;
if (!mIsInChoice)
mGoodbye = true;
}

Loading…
Cancel
Save