Skip to content

Commit

Permalink
Avoid marking map blocks dirty upon deserialization.
Browse files Browse the repository at this point in the history
  • Loading branch information
lhofhansl committed Nov 26, 2020
1 parent 8dc70eb commit f1349be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mapblock.cpp
Expand Up @@ -533,7 +533,7 @@ void MapBlock::deSerialize(std::istream &is, u8 version, bool disk)
// Timestamp
TRACESTREAM(<<"MapBlock::deSerialize "<<PP(getPos())
<<": Timestamp"<<std::endl);
setTimestamp(readU32(is));
setTimestampNoChangedFlag(readU32(is));
m_disk_timestamp = m_timestamp;

// Dynamically re-set ids based on node names
Expand Down Expand Up @@ -716,10 +716,10 @@ void MapBlock::deSerialize_pre22(std::istream &is, u8 version, bool disk)

// Timestamp
if (version >= 17) {
setTimestamp(readU32(is));
setTimestampNoChangedFlag(readU32(is));
m_disk_timestamp = m_timestamp;
} else {
setTimestamp(BLOCK_TIMESTAMP_UNDEFINED);
setTimestampNoChangedFlag(BLOCK_TIMESTAMP_UNDEFINED);
}

// Dynamically re-set ids based on node names
Expand Down

0 comments on commit f1349be

Please sign in to comment.