1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 21:45:33 +00:00

Fix Journal instruction for non-existing journal indices (Fixes #2063)

This commit is contained in:
scrawl 2014-10-25 23:40:24 +02:00
parent e604fcf282
commit aa02974d3b

View file

@ -41,6 +41,7 @@ namespace MWScript
} }
catch (...) catch (...)
{ {
if (MWBase::Environment::get().getJournal()->getJournalIndex(quest) < index)
MWBase::Environment::get().getJournal()->setJournalIndex(quest, index); MWBase::Environment::get().getJournal()->setJournalIndex(quest, index);
} }
} }