1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 19:19:56 +00:00

Merge pull request #1328 from akortunov/journalfix

Do not show empty journal entries (fixes #3891)
This commit is contained in:
scrawl 2017-06-27 17:56:29 +02:00 committed by GitHub
commit ea5fe4b686

View file

@ -85,14 +85,16 @@ namespace MWDialogue
StampedJournalEntry entry = StampedJournalEntry::makeFromQuest (id, index, actor);
mJournal.push_back (entry);
Quest& quest = getQuest (id);
quest.addEntry (entry); // we are doing slicing on purpose here
// there is no need to show empty entries in journal
if (!entry.getText().empty())
{
mJournal.push_back (entry);
MWBase::Environment::get().getWindowManager()->messageBox ("#{sJournalEntry}");
}
}
void Journal::setJournalIndex (const std::string& id, int index)
{