diff options
| author | mat <git@matdoes.dev> | 2026-05-07 01:42:52 -0330 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2026-05-07 08:05:58 -1200 |
| commit | ee7358ebc2d3a033b48b3a97af4255e1efba9ef9 (patch) | |
| tree | 7a69c0676225bab4e37b44fb398829d554708623 /azalea/src/entity_ref | |
| parent | a6fbdea961c2f8a788b362cbde1eab356d298e84 (diff) | |
| download | azalea-drasl-ee7358ebc2d3a033b48b3a97af4255e1efba9ef9.tar.xz | |
correct shapes for blocks with random offsets
Diffstat (limited to 'azalea/src/entity_ref')
| -rw-r--r-- | azalea/src/entity_ref/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea/src/entity_ref/mod.rs b/azalea/src/entity_ref/mod.rs index db22f555..94d2fe0a 100644 --- a/azalea/src/entity_ref/mod.rs +++ b/azalea/src/entity_ref/mod.rs @@ -151,7 +151,8 @@ impl EntityRef { /// Look at this entity from the client that created the `EntityRef`. pub fn look_at(&self) -> AzaleaResult<()> { - Ok(self.client.look_at(self.eye_position()?)) + self.client.look_at(self.eye_position()?); + Ok(()) } /// Returns the distance between the client's feet position and this |
