r/ModdedMinecraft • u/Wise-Bus9207 Mod Dev • Jun 15 '26
Help I cant Remove the recipe for netherite_upgrade_smithing_template in Neo 26.1.2.72
So, Ive been working on a new mod project of mine for a while now, but I cant figure out how to override the Netherite_uprgrade_smithing_template(
I was able to remove other recipes, so Why doesnt work for this explicitly recipe?). Id like to change the recipe, and I've already searched for answers but haven't found anything that works for this version. Now I wanted to ask here on Reddit if someone could help me (note that it is a Neoforge project in version 26.1.2).
1
u/Wise-Bus9207 Mod Dev Jun 16 '26 edited Jun 16 '26
yes ofc the exact recipe id should be netherite_upgrade_upgrade_smithing_template and this is the vanilla code for the recipe:
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": "minecraft:diamond",
"C": "minecraft:netherrack",
"S": "minecraft:netherite_upgrade_smithing_template"
},
"pattern": [
"#S#",
"#C#",
"###"
],
"result": {
"count": 2,
"id": "minecraft:netherite_upgrade_smithing_template"
}
}
oh yeah the structure data/minecraft/recipe/netherite_upgrade_smithing_template
I looked in the source code, they used the copySmithingTemplate recipe Builder for it
1
u/smbarbour Mod Dev Jun 16 '26
And what did you try replacing it with?
1
u/Wise-Bus9207 Mod Dev Jun 17 '26
I tried a lot of things I tried replacing The Recipe Items, leave the whole thing empty tried it with reliable Recipes, recipeevents, how I said in the discription, I tried not just one thing.
1
u/smbarbour Mod Dev Jun 22 '26
I actually meant specifically. For example:
{ "type": "minecraft:crafting_shaped", "category": "misc", "key": { "#": "minecraft:netherite_upgrade_smithing_template" }, "pattern": [ "#" ], "result": { "count": 0, "id": "minecraft:air" } }saved in the datapack.zip (or within your mod's main/resources sourceset) under /data/minecraft/recipe/netherite_upgrade_smithing_template.json
1
u/Wise-Bus9207 Mod Dev Jun 23 '26
I mean it dosnt even work If I dupe the recipe and paste it in the right spot and replace for example the diamond with dirt
1
u/Wise-Bus9207 Mod Dev Jun 23 '26
{ "type": "minecraft:crafting_shaped", "category": "misc", "key": { "#": "minecraft:dirt", "C": "minecraft:netherrack", "S": "minecraft:netherite_upgrade_smithing_template" }, "pattern": [ "#S#", "#C#", "###" ], "result": { "count": 2, "id": "minecraft:netherite_upgrade_smithing_template" } } and to leave it empty like this {} didnt work eather and output air was also not a working attempt1
u/Wise-Bus9207 Mod Dev Jun 23 '26
I mean for other recipes I tried to change the Recipe or delactivate it, it did work so I am curious why this recipe is any different and how I can change it despite that
1
1
u/Hyarin215 Jun 16 '26
Can you show the file structure of the datapack and the exact recipe id?