Odyssey Map

Explore. Navigate. Never get lost again. A clean, lightweight minimap and fullscreen map for Minecraft.

File Details

odysseymap-fabric-26.1.2-1.2.1.jar

  • R
  • Jul 16, 2026
  • 117.79 KB
  • 12
  • 26.1.2
  • Fabric

File Name

odysseymap-fabric-26.1.2-1.2.1.jar

Supported Versions

  • 26.1.2

Curse Maven Snippet

Fabric

modImplementation "curse.maven:odyssey-map-1564458:8443794"

Learn more about Curse Maven

Bug Fixes

  • Fixed MC 26.2 client crash on launch (Fabric/NeoForge) — GameRendererAccessor shadowed mainCamera as an interface field, which Java treats as static. Mixin rejected the apply with STATIC modifier of @Shadow field mainCamera does not match the target. Removed the broken accessor and now use the public GameRenderer.mainCamera() method.
  • Hardened LevelRenderer access on MC 26.2 — Replaced the same static @Shadow field pattern on LevelRendererAccessor.submitNodeStorage with a proper @Accessor getter so world waypoint rendering cannot hit the same mixin failure.

Technical Changes

  • Deleted GameRendererAccessor (Fabric + NeoForge) for MC 26.2.
  • MixinGameRenderer now reads the camera via mc.gameRenderer.mainCamera().
  • LevelRendererAccessor uses @Accessor("submitNodeStorage") instead of an interface @Shadow field.