mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-23 15:06:46 +00:00
Do not write LandData twice (Fixes #3140)
This commit is contained in:
parent
62fe47b144
commit
091ca9743e
1 changed files with 0 additions and 4 deletions
|
@ -394,10 +394,6 @@ void CSMDoc::WriteLandCollectionStage::perform (int stage, Messages& messages)
|
||||||
CSMWorld::Land record = land.get();
|
CSMWorld::Land record = land.get();
|
||||||
writer.startRecord (record.sRecordId);
|
writer.startRecord (record.sRecordId);
|
||||||
record.save (writer, land.mState == CSMWorld::RecordBase::State_Deleted);
|
record.save (writer, land.mState == CSMWorld::RecordBase::State_Deleted);
|
||||||
|
|
||||||
if (const ESM::Land::LandData *data = record.getLandData (record.mDataTypes))
|
|
||||||
data->save (mState.getWriter());
|
|
||||||
|
|
||||||
writer.endRecord (record.sRecordId);
|
writer.endRecord (record.sRecordId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue