mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
A small fix to unnecessary saving of map metadata
This commit is contained in:
parent
2830095366
commit
664eb4f7c5
1 changed files with 3 additions and 1 deletions
|
@ -4801,7 +4801,6 @@ void ServerMap::save(bool only_changed)
|
|||
if(only_changed == false || m_map_metadata_changed)
|
||||
{
|
||||
saveMapMeta();
|
||||
m_map_metadata_changed = false;
|
||||
}
|
||||
|
||||
// Disable saving chunk metadata if chunks are disabled
|
||||
|
@ -4985,6 +4984,7 @@ void ServerMap::saveMapMeta()
|
|||
|
||||
os<<"[end_of_params]\n";
|
||||
|
||||
m_map_metadata_changed = false;
|
||||
}
|
||||
|
||||
void ServerMap::loadMapMeta()
|
||||
|
@ -5072,6 +5072,8 @@ void ServerMap::saveChunkMeta()
|
|||
// Write chunk data
|
||||
chunk->serialize(os, version);
|
||||
}
|
||||
|
||||
setChunksNonModified();
|
||||
}
|
||||
|
||||
void ServerMap::loadChunkMeta()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue