|
|
|
@ -260,7 +260,7 @@ namespace MWDialogue
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool DialogueManager::inJournal(const std::string& topicId, const std::string& infoId)
|
|
|
|
|
bool DialogueManager::inJournal(const std::string& topicId, const std::string& infoId) const
|
|
|
|
|
{
|
|
|
|
|
const MWDialogue::Topic* topicHistory = nullptr;
|
|
|
|
|
MWBase::Journal* journal = MWBase::Environment::get().getJournal();
|
|
|
|
@ -528,12 +528,12 @@ namespace MWDialogue
|
|
|
|
|
mChoices.emplace_back(text, choice);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const std::vector<std::pair<std::string, int>>& DialogueManager::getChoices()
|
|
|
|
|
const std::vector<std::pair<std::string, int>>& DialogueManager::getChoices() const
|
|
|
|
|
{
|
|
|
|
|
return mChoices;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool DialogueManager::isGoodbye()
|
|
|
|
|
bool DialogueManager::isGoodbye() const
|
|
|
|
|
{
|
|
|
|
|
return mGoodbye;
|
|
|
|
|
}
|
|
|
|
|