Links
Tags
Creators
Details
1.4.0
Compatibility
Changes
Improved structure locate performance
Structure placements are now cached during locate checks, avoiding repeated registry lookups and placement-list construction. The cache is automatically invalidated whenever the active chunk generator state changes.
Safer resource-pack lookups
The ZIP resource index is now initialized with proper synchronization and safely published as an immutable map. Closing a resource pack now releases the cached index without mutating data that may still be accessed by another thread.
Reliable lazy_dfu configuration
The lazy_dfu option is now read during early Mixin bootstrap, ensuring that the DFU optimization is enabled or disabled before the affected Mixin is applied.
The existing compatibility behavior for Quick Pack is also preserved: resource-pack lookup optimization is automatically disabled when Quick Pack is detected.
Updated boat fall behavior
Backported modern boat fall-distance handling, including correct vertical-motion tracking, fall-distance accumulation, and reset behavior when landing.
Maintenance
- Removed an unnecessary Forge event-bus registration.
- Bumped the project version from
1.3.0to1.4.0.
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:Mjoo9rPv:hSQAN9L6"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:Mjoo9rPv:hSQAN9L6"
}

