new item builder kinda works. making sure everything is moved across, then i gotta start on the new set
build / build (push) Failing after 3m33s

This commit is contained in:
2026-07-08 00:34:10 +01:00
parent 08c1800cac
commit 5f6350943e
26 changed files with 458 additions and 99 deletions
+6 -1
View File
@@ -4,6 +4,7 @@ import dev.zxq5.items.ItemImplementation
import dev.zxq5.items.ItemTagAdder
import dev.zxq5.items.ModItems
import dev.zxq5.items.Witherite
//import dev.zxq5.items.Witherite
import net.fabricmc.api.ModInitializer
import net.fabricmc.fabric.api.datagen.v1.FabricPackOutput
import net.fabricmc.fabric.api.datagen.v1.provider.FabricRecipeProvider
@@ -49,7 +50,11 @@ class ModRecipeProvider(
): RecipeProvider {
return object : RecipeProvider(registries, exporter) {
override fun buildRecipes() {
ItemImplementation.all.forEach { it.generateRecipes(registries, exporter) }
print("GENERATING ALL RECIPES")
ItemImplementation.all.forEach {
print("GENERATING RECIPES FOR" + it.items.toString())
it.generateRecipes(registries, exporter)
}
}
}
}