Tags
Creators
Details
Licensed GPL-3.0-only
Published 8 months ago
All versions
1.7.0-forge-1.20.1
Release
journeymode-1.7.0-forge-1.20.12 months ago 33
Compatibility
Minecraft: Java Edition
1.20.1
Platform
Forge
Supported environments
Client and server
Changes
ðŸ›¡ï¸ Mod Registry & Conflict Hardening
- Robust Error Isolation: Implemented comprehensive defensive exception mapping when querying ingredient and output registries. Any third-party recipe classes that throw exceptions during retrieval are caught safely and defaulted, entirely preventing client rendering screen crashes.
- Severe Performance Optimizations: Replaced the legacy linear scans over every registered mod recipe with a lazily-built $O(1)$ indexing map. This shifts threshold calculation from slow recursive loops to instant lookups, completely eliminating FPS stutter when opening the Journey menu in massive modpacks.
🧵 Concurrency & Persistence Upgrades
- Centralized Data Safety: Synchronized player capability loading procedures to pair with global capability saves. This enforces mutual exclusion on all JSON profile read/write operations, eliminating file-corruption race conditions when multiple players log in and out concurrently on servers.
- Main-Thread Thread Safety: Audited client/server network packets to ensure all asynchronous packet handling is correctly enqueued and processed on the main threads.
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:OMRJLjO7:CuAyS3Lm"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:OMRJLjO7:CuAyS3Lm"
}

