diff options
| author | Shayne Hartford <shaybox@shaybox.com> | 2024-11-30 19:05:35 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-30 18:05:35 -0600 |
| commit | ea5a1c1ec128cc1a33593c9d91ef758c3fb73e16 (patch) | |
| tree | a118ec0a95af962da70d5df7ad1028813d2883a1 /azalea-physics | |
| parent | 944fe5c6f888ebdcb7354cc5e6ab6a7414daec99 (diff) | |
| download | azalea-drasl-ea5a1c1ec128cc1a33593c9d91ef758c3fb73e16.tar.xz | |
Add missing world border boolean to use item on packet in 1.21.2 (#192)
Diffstat (limited to 'azalea-physics')
| -rwxr-xr-x | azalea-physics/src/collision/shape.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/azalea-physics/src/collision/shape.rs b/azalea-physics/src/collision/shape.rs index 3f584952..e7ac9c2e 100755 --- a/azalea-physics/src/collision/shape.rs +++ b/azalea-physics/src/collision/shape.rs @@ -439,6 +439,7 @@ impl VoxelShape { location: right_after_start, inside: true, miss: false, + world_border: false, }) } else { AABB::clip_iterable(&self.to_aabbs(), from, to, block_pos) |
