fix(#8479): recast elytra on aiStep tail - #8545
Open
Pro0101-2b2fr wants to merge 3 commits into
Open
Conversation
Pro0101-2b2fr
force-pushed
the
fix/elytra-recast-handler
branch
from
June 22, 2026 22:13
f420665 to
e47b839
Compare
Contributor
|
|
Pro0101-2b2fr
force-pushed
the
fix/elytra-recast-handler
branch
from
June 23, 2026 14:25
e47b839 to
0ddb0a3
Compare
Contributor
Author
It didn't work I don't know why, but mine is working now. |
Contributor
|
@Pro0101-2b2fr Test again when you are available. |
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.
Summary
Fixes #8479 — ElytraRecast module did literally nothing when enabled because it had no event handler to drive its logic.
Changes
GameTickEventhandler (tickHandler) that callsrecastElytra()each tick.shouldRecastpredicate andrecastElytra()method already existed — they just were never invoked.Root cause
The module defined the recast logic and conditions but had no event subscription to actually trigger them. This was likely a regression from a refactor that removed the original handler without replacement.
This PR was developed with AI assistance.