Upgrades to MC 26.1.1 and MultiLoader#33
Draft
Saereth wants to merge 4 commits into
Draft
Conversation
…n dead code - Register CLIENT_SETUP listener on NeoForge mod event bus (was never wired up) - Add ENTITY_ADD forwarder on Fabric via ServerEntityEvents.ENTITY_LOAD - Add PLAYER_TICK forwarder on both platforms - Extract KeyInputUtil.shouldIgnoreKeyInput() to DRY 22 submod handlers - Replace System.out.println with EyeMine.LOGGER across 6 files - Remove ~180 lines of dead code from AbstractRenderer and ModUtils
- Correct KeyboardInput moveVector mapping to use the y-axis for forward movement - Trigger a configuration save when updating the custom speed factor on Fabric and NeoForge - Remove redundant cursor mode override in MouseHandler
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.
Upgrades EyeMine to Minecraft 26.1.1 and Java 25, migrating the project to a multi-loader architecture to support NeoForge and Fabric, while deprecating direct Forge support.
Key Architectural Changes
EyeMineEventssystem, allowing platform-specific entry points to forward native events to a unified bus.Build System Enhancements
buildSrcConvention Plugins: Replaces Architectury Loom with custom Gradle plugins for a more flexible multi-project build configuration using ModDevGradle for NeoForge and Fabric Loom for Fabric.API & Code Modernization
RenderPipelines.GUI_TEXTUREDandGuiGraphicsExtractorfor alpha support and consistency. Block outline rendering is adapted for new 26.1 specsKeyboardInputMixinfor Minecraft 26.1.1's immutableInputrecord systemLivingEntityMixinto useAttributeModifierfor step height and modernizes various entity and world interaction APIs (for example,TeleportPlayerToSpawnPointMessage,AutoOpenDoors,ContinuouslyAttack).FabricKeyboardHandlerMixinandFabricSetScreenMixinto ensure proper event forwarding for key presses and screen changes on Fabric.Removed Features
build,bump-version,releaseare removed.