Tags
Creators
Details
0.5.0+mc26
Compatibility
Changes
0.5.0 - Two correctness fixes. No new mods bridged; this one is about the bridges already there being right.
Fixed: planting seeds are no longer food. Croptopia files its seeds inside its produce tags, so referencing those tags pulled 13 seeds into c:foods/vegetable and the garnish role - meaning a lettuce seed could satisfy any recipe asking for a garnish. Produce is now enumerated item-by-item with the seeds dropped. Croptopia's vegetables and fruits still bridge exactly as before; only the seeds are gone.
Seeds are identified by the ecosystem's own c:seeds classification rather than by name, so plantable foods (Farm & Charm's onion) and edible seed foods (Croptopia's roasted pumpkin and sunflower seeds) correctly stay food.
Fixed: a lone install could refuse to load. Three references to convention tags (c:foods/berry, c:buckets/milk) were marked required. On Fabric without Fabric API - a setup the README explicitly invites - those tags are undefined, and a required reference to an undefined tag fails datapack loading outright. They are optional now, as every cross-mod reference should be.
Both fixes are now guarded by a new audit that resolves every tag the mod asserts and fails the build if either problem reappears.
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:rNg1wypx:PQoRkf29"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:rNg1wypx:PQoRkf29"
}

