Fix block not copied when the save of a single one is triggered

master
Marc Gilleron 2020-07-25 21:57:36 +01:00
parent 4991b682d9
commit b7fe71ff45
1 changed files with 1 additions and 1 deletions

View File

@ -1102,7 +1102,7 @@ void VoxelTerrain::_b_save_block(Vector3 p_block_pos) {
return;
}
ScheduleSaveAction{ _blocks_to_save, false }(block);
ScheduleSaveAction{ _blocks_to_save, true }(block);
}
void VoxelTerrain::_bind_methods() {