Fixed diamond charge being wrong recipe type.

This commit is contained in:
Micle
2022-11-03 20:17:03 +00:00
parent 79525000b1
commit b5638bb783
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{ {
"type": "totemofreviving:totem_recipe", "type": "totemofreviving:charge_recipe",
"pattern": [ "pattern": [
"IDI", "IDI",
"PEP", "PEP",

View File

@ -76,7 +76,7 @@ public class ModRecipeProvider extends RecipeProvider {
.pattern("NIN") .pattern("NIN")
.unlockedBy("has_item", has(ModItems.IRON_TOTEM.get())) .unlockedBy("has_item", has(ModItems.IRON_TOTEM.get()))
.save(consumer); .save(consumer);
ExtendedShapedRecipeBuilder.shaped(ModRecipes.TOTEM_RECIPE.get(), ModItems.DIAMOND_CHARGE.get()) ExtendedShapedRecipeBuilder.shaped(ModRecipes.CHARGE_RECIPE.get(), ModItems.DIAMOND_CHARGE.get())
.define('E', Items.EMERALD) .define('E', Items.EMERALD)
.define('D', Items.DIAMOND) .define('D', Items.DIAMOND)
.define('I', Items.IRON_INGOT) .define('I', Items.IRON_INGOT)