diff options
| author | mat <git@matdoes.dev> | 2026-02-22 14:44:11 +1200 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2026-02-22 14:44:11 +1200 |
| commit | 70b3a70e077900b078285316c864f7e74ecbff2b (patch) | |
| tree | f8607ce549fc9453e27485253ee00064f5e28fce /azalea-world/src | |
| parent | 50119ac97a36d94ab9bb5bd2d8c31d1d0c494a48 (diff) | |
| download | azalea-drasl-70b3a70e077900b078285316c864f7e74ecbff2b.tar.xz | |
fix tests
Diffstat (limited to 'azalea-world/src')
| -rw-r--r-- | azalea-world/src/find_blocks.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-world/src/find_blocks.rs b/azalea-world/src/find_blocks.rs index 0980e825..753809ef 100644 --- a/azalea-world/src/find_blocks.rs +++ b/azalea-world/src/find_blocks.rs @@ -11,8 +11,8 @@ impl World { /// /// ``` /// # use azalea_registry::builtin::BlockKind; - /// # fn example(world: &World) { - /// let pos = world.find_block(client.position(), &BlockKind::Chest.into()); + /// # fn example(position: azalea_core::position::Vec3, world: &azalea_world::World) { + /// let pos = world.find_block(position, &BlockKind::Chest.into()); /// # } /// ``` pub fn find_block( |
