0.1.2
Compatibility
Changes
WORK IN PROGRESS
This update improves how missing materials are calculated and displayed when attempting to craft items.
What changed
The recipe planner now analyzes the entire crafting dependency tree when a recipe cannot be completed.
Instead of only reporting missing items at the current step, the system now:
Traverses all sub-recipes recursively Calculates missing materials across all branches Consolidates duplicate requirements into a single total Returns a complete and accurate list of everything needed Result
You now get all missing materials in a single message, including intermediate components.
No more iterative guessing or repeated crafting attempts.
Example
Before:
Missing materials were revealed step by step Multiple retries were needed to discover full requirements
Now:
All required materials are shown instantly Fully consolidated and ready to act on Technical details estimateMissingMaterials() is now always executed on planning failure Fallback to flatten(state.missing) if estimation returns empty No impact on existing crafting logic or performance Uses already optimized internal systems Stability Build successful All tests passing Safe change focused on logic improvement Impact Improved user experience Faster crafting workflow Eliminates friction when dealing with complex recipes
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:JWRNtiLD:AsMsJrXx"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:JWRNtiLD:AsMsJrXx"
}

