diff options
| author | mat <git@matdoes.dev> | 2023-08-01 02:38:49 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-08-01 02:38:49 -0500 |
| commit | 68f01625cc151e57c3639c430da5d47cccf5e39f (patch) | |
| tree | be640ed25b2b495d10bf107302a180bf731e98ca /azalea/examples | |
| parent | b762d1dfb28f2e166e5c3b185a12d7b5a6b53885 (diff) | |
| download | azalea-drasl-68f01625cc151e57c3639c430da5d47cccf5e39f.tar.xz | |
improve Instance::find_block
Diffstat (limited to 'azalea/examples')
| -rw-r--r-- | azalea/examples/testbot.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/examples/testbot.rs b/azalea/examples/testbot.rs index 6fb50964..e2f1c436 100644 --- a/azalea/examples/testbot.rs +++ b/azalea/examples/testbot.rs @@ -306,7 +306,7 @@ async fn swarm_handle( for (name, world) in &swarm.instance_container.read().worlds { println!("world name: {name}"); if let Some(w) = world.upgrade() { - for chunk_pos in w.read().chunks.chunks.values() { + for chunk_pos in w.read().chunks.map.values() { println!("chunk: {chunk_pos:?}"); } } else { |
