Update to 26.2 and stabilize mining aim - #5082
Draft
N-Echelibe wants to merge 2 commits into
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This updates Baritone to the 26.2 development baseline and includes a fix for legit mining aim.
The mining rotation previously used roughly fixed angular offsets. The farther away a block is, the more that same angle moves the crosshair across the target, so at longer reach distances or awkward viewing angles it could drift off the block. The adjustment is now scaled by distance so the crosshair moves by roughly the same amount in world space regardless of how far away the block is.
It also keeps the current block target stable while that block is actively being broken. Previously, target reevaluation could switch blocks mid-break, repeatedly reset progress, and leave mining stuck until the player intervened.
The fix is intentionally lightweight. Distance scaling is a constant-time calculation, and the target is only held during an active break; it does not add any new scans or pathfinding work.
Testing: added focused coverage for distance-scaled aim behavior and completed the project tests and Fabric build.