mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-21 22:38:41 -06:00
only save modified chunks
This commit is contained in:
parent
61b99409ce
commit
64a67d0ffe
|
@ -287,6 +287,8 @@ fn process_state_changes(
|
|||
|
||||
if let Some(io) = &io {
|
||||
if let Some(block_data) = &chunk.block_data {
|
||||
// Only save the chunk if it has been modified
|
||||
if chunk.data_modified {
|
||||
// log::debug!("issue save command");
|
||||
io.send(IOCommand::SaveChunk {
|
||||
position,
|
||||
|
@ -294,6 +296,7 @@ fn process_state_changes(
|
|||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue