promotional bannermobile promotional banner

Core Curriculum

A recognition system for TheBlockAcademy modpack that awards visible titles for craft, teaching, and community contributions through AI-assisted build reviews. NOTE: This is an integration mod. It's designed for exclusive use at https://thebloack.academy

File Details

corecurriculum-0.1.24.jar

  • R
  • Feb 17, 2026
  • 231.84 KB
  • 61
  • 1.21.1
  • Fabric

File Name

corecurriculum-0.1.24.jar

Supported Versions

  • 1.21.1

Curse Maven Snippet

Fabric

modImplementation "curse.maven:core-curriculum-1430194:7637105"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

v0.1.24 — Two fixes in SplashOverlayMixin.java:

  1. Progress bar now fades with the overlay — Captures vanilla's fade alpha from redirectFill and applies it to both the track and fill colors. Also early-returns when alpha reaches 0 so it doesn't draw invisible rectangles.
  2. Progress bar now reaches 100% — Removed the double-smoothing (visualProgress lerp). Vanilla already applies an EMA (progress = progress * 0.95 + actual * 0.05), so we use progress directly instead of adding a second slower animation on top.