mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
remove unnecessary parens
This commit is contained in:
parent
68f01625cc
commit
3350ef0f7f
1 changed files with 3 additions and 1 deletions
|
@ -187,7 +187,9 @@ impl Instance {
|
||||||
(chunk_pos.x - start_chunk.x).unsigned_abs(),
|
(chunk_pos.x - start_chunk.x).unsigned_abs(),
|
||||||
(chunk_pos.z - start_chunk.z).unsigned_abs(),
|
(chunk_pos.z - start_chunk.z).unsigned_abs(),
|
||||||
),
|
),
|
||||||
((nearest_to.y - nearest_found_pos.y).unsigned_abs()).div_ceil(16),
|
(nearest_to.y - nearest_found_pos.y)
|
||||||
|
.unsigned_abs()
|
||||||
|
.div_ceil(16),
|
||||||
);
|
);
|
||||||
let nearest_chunk_distance = iter.layer;
|
let nearest_chunk_distance = iter.layer;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue