Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge 1.20.5 into 1.21.1 #4534

Merged
merged 33 commits into from
Oct 30, 2024
Merged
Changes from 2 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
a07d7d0
Sync mixin and asm versions between common and tweaker
ZacSharp Jul 21, 2024
f6045b7
Merge pull request #4438 from ZacSharp/pr/1.19.4/build/syncMixinAndAsm
leijurv Jul 28, 2024
330089f
Shorten / simplify some Litematica related things
ZacSharp Jul 27, 2024
b12c4e9
Merge loading steps
ZacSharp Jul 29, 2024
b87a1fa
Take data directly from Litematica
ZacSharp Jul 28, 2024
246a246
Less nested schematics
ZacSharp Jul 29, 2024
e71547b
Take blocks from the schematic world
ZacSharp Jul 29, 2024
1a0cca7
Use toString like for schematica
ZacSharp Jul 29, 2024
99f9dd1
Performance
ZacSharp Jul 29, 2024
7609f30
Keep subregions as separate boxes
ZacSharp Jul 30, 2024
b915151
We don't expect any exceptions here anymore
ZacSharp Jul 30, 2024
6b6931c
Remove unused stub
ZacSharp Jul 30, 2024
4203289
✨ Setting to rotate schematics
ZacSharp Jul 28, 2024
7e8c852
✨ Setting to mirror schematics
ZacSharp Jul 28, 2024
e682fc7
Fix selection box aabbs
ZacSharp Aug 9, 2024
ef72c56
Merge pull request #4453 from ZacSharp/pr/1.19.4/schematics/litematic…
leijurv Aug 22, 2024
800545f
Merge pull request #4465 from ZacSharp/pr/1.20.6/selection/fixSelecti…
leijurv Aug 22, 2024
d25d6c2
Merge pull request #4452 from ZacSharp/pr/1.19.4/builder/rotateAndMir…
leijurv Sep 16, 2024
a690e1e
prepend feet to the path if start is adjacent to feet
babbaj Oct 14, 2024
1e2ae34
crucial performance optimization
babbaj Oct 15, 2024
d644c5b
a bit more elegant
babbaj Oct 15, 2024
f22f4ae
Merge pull request #4519 from babbaj/edge-fix
leijurv Oct 15, 2024
ea1de44
Don't call `shape.bounds()` on empty shapes
ZacSharp Oct 20, 2024
c25b132
Handle positions going out of bounds between ticks
ZacSharp Oct 20, 2024
991d822
Make soul sand `canWalkOn` again
ZacSharp Oct 20, 2024
8e8cfdd
Merge pull request #4529 from ZacSharp/pr/1.19.4/builder/fixEmptyShap…
leijurv Oct 21, 2024
58fcf32
Merge pull request #4530 from ZacSharp/pr/1.19.4/builder/fixPositionO…
leijurv Oct 21, 2024
db16386
Merge pull request #4531 from ZacSharp/pr/1.19.4/pathing/canWalkOnSou…
leijurv Oct 21, 2024
f665784
fix loops in path (fixes #4528)
babbaj Oct 21, 2024
93dee4f
Merge pull request #4532 from babbaj/fix-loops
leijurv Oct 21, 2024
2869503
Merge branch '1.19.4' into 1.20.5
ZacSharp Oct 22, 2024
b550b92
Merge pull request #4527 from ZacSharp/1.20.5-update
leijurv Oct 22, 2024
52cfe5c
Merge branch '1.20.5' into 1.21.1
ZacSharp Oct 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/baritone/selection/Selection.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public Selection(BetterBlockPos pos1, BetterBlockPos pos2) {
max.z - min.z + 1
);

this.aabb = new AABB(this.min);
this.aabb = new AABB(min.x, min.y, min.z, max.x + 1, max.y + 1, max.z + 1);
}

@Override
Expand Down