aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/block_hit_result.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-core/src/block_hit_result.rs')
-rwxr-xr-xazalea-core/src/block_hit_result.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/azalea-core/src/block_hit_result.rs b/azalea-core/src/block_hit_result.rs
index 20cc723b..4d930453 100755
--- a/azalea-core/src/block_hit_result.rs
+++ b/azalea-core/src/block_hit_result.rs
@@ -10,6 +10,7 @@ pub struct BlockHitResult {
pub block_pos: BlockPos,
pub miss: bool,
pub inside: bool,
+ pub world_border: bool,
}
impl BlockHitResult {
@@ -20,6 +21,7 @@ impl BlockHitResult {
block_pos,
miss: true,
inside: false,
+ world_border: false,
}
}