mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 15:29:55 +00:00
FIX: Serialize journal records first when saving plugins
This commit is contained in:
parent
bac0018a09
commit
dbb29b2391
1 changed files with 2 additions and 2 deletions
|
@ -114,10 +114,10 @@ CSMDoc::Saving::Saving(Document& document, const std::filesystem::path& projectP
|
||||||
|
|
||||||
// Dialogue can reference objects and cells so must be written after these records for vanilla-compatible files
|
// Dialogue can reference objects and cells so must be written after these records for vanilla-compatible files
|
||||||
|
|
||||||
appendStage(new WriteDialogueCollectionStage(mDocument, mState, false));
|
|
||||||
|
|
||||||
appendStage(new WriteDialogueCollectionStage(mDocument, mState, true));
|
appendStage(new WriteDialogueCollectionStage(mDocument, mState, true));
|
||||||
|
|
||||||
|
appendStage(new WriteDialogueCollectionStage(mDocument, mState, false));
|
||||||
|
|
||||||
appendStage(new WritePathgridCollectionStage(mDocument, mState));
|
appendStage(new WritePathgridCollectionStage(mDocument, mState));
|
||||||
|
|
||||||
appendStage(new WriteLandTextureCollectionStage(mDocument, mState));
|
appendStage(new WriteLandTextureCollectionStage(mDocument, mState));
|
||||||
|
|
Loading…
Reference in a new issue