Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac8668 committed Jan 27, 2024
1 parent de5a415 commit e6f1eae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chunk_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ impl ChunkManager {
}
}

impl Drop for ChunkManager {
/*impl Drop for ChunkManager {
fn drop(&mut self) {
let file = File::open("assets/world/world").unwrap();
let mut buffered = BufReader::new(file);
Expand All @@ -130,7 +130,7 @@ impl Drop for ChunkManager {
let mut buffered = BufWriter::new(file);
bincode::serialize_into(&mut buffered, &file_chunks).unwrap();
}
}
}*/

impl std::ops::Index<ChunkPos> for ChunkManager {
type Output = Atom;
Expand Down

0 comments on commit e6f1eae

Please sign in to comment.