File Details
odysseymap-neoforge-26.2-1.2.1.jar
- R
- Jul 16, 2026
- 114.04 KB
- 22
- 26.2
- NeoForge
File Name
odysseymap-neoforge-26.2-1.2.1.jar
Supported Versions
- 26.2
Curse Maven Snippet
Bug Fixes
- Fixed MC 26.2 client crash on launch (Fabric/NeoForge) —
GameRendererAccessorshadowedmainCameraas an interface field, which Java treats asstatic. Mixin rejected the apply withSTATIC modifier of @Shadow field mainCamera does not match the target. Removed the broken accessor and now use the publicGameRenderer.mainCamera()method. - Hardened LevelRenderer access on MC 26.2 — Replaced the same static
@Shadowfield pattern onLevelRendererAccessor.submitNodeStoragewith a proper@Accessorgetter so world waypoint rendering cannot hit the same mixin failure.
Technical Changes
- Deleted
GameRendererAccessor(Fabric + NeoForge) for MC 26.2. MixinGameRenderernow reads the camera viamc.gameRenderer.mainCamera().LevelRendererAccessoruses@Accessor("submitNodeStorage")instead of an interface@Shadowfield.