1.0.0
Compatibility
Changes
Biome Journal is a client-side Minecraft mod for NeoForge 1.21.5 that automatically detects each new biome entry and saves it in a personal journal. Upon entering a new biome, a HUD overlay briefly appears displaying its name and current discovery counter. Pressing the J keybind opens the journal, which lists all discovered biomes, including the exact coordinates of where you first entered each biome. Clicking on an entry displays a detailed view with the coordinates and a ready-made /tp command for returning to the previous biome. All data is stored locally in a JSON file and persists across restarts. The mod works on any server without requiring server-side installation.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:WLmmcsPU:EyvYdA3S"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:WLmmcsPU:EyvYdA3S"
}

