mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-03-04 17:23:33 +01:00
main: print message when processing region
This commit is contained in:
parent
447a9482fe
commit
d77dcce778
1 changed files with 3 additions and 1 deletions
|
@ -44,7 +44,9 @@ impl RegionProcessor {
|
|||
}
|
||||
|
||||
/// Processes a single region file
|
||||
fn process_region(&self, path: &Path, _coords: RegionCoords) -> Result<()> {
|
||||
fn process_region(&self, path: &Path, coords: RegionCoords) -> Result<()> {
|
||||
println!("Processing region r.{}.{}.mca", coords.0, coords.1);
|
||||
|
||||
minedmap::io::region::from_file(path)?.foreach_chunk(
|
||||
|chunk_coords, data: world::de::Chunk| {
|
||||
(|| -> Result<()> {
|
||||
|
|
Loading…
Add table
Reference in a new issue