Literally, every Wool into Carpet recipe is missing a Priority in the Crafting Recipes.
{
"format_version": "1.20.10",
"minecraft:recipe_shaped": {
"description": {
"identifier": "minecraft:blue_carpet"
},
"tags": [ "crafting_table" ],
"group": "carpet",
"pattern": [
"##"
],
"key": {
"#": {
"item": "minecraft:blue_wool"
}
},
"unlock": [
{
"item": "minecraft:blue_wool"
}
],
"result": {
"item": "minecraft:blue_carpet",
"count": 3
}
}
}
This lack of Priority makes it difficult to overwrite the Vanilla recipes, because the Default Priority is not immediately obvious unless you specifically go searching for specifically that information, and I don't know where to look for that information, and I was trying to replace the Wool to Carpet Recipes to make it 2 Wool per Carpet instead of 1.5 Wool per Carpet. Also, it would be nice if you had consistent priorities for the Recipes, as Jukebox uses "priority": 1 while the Jukebox Variants use "priority": -1 (meanwhile, the use of "tag": "minecraft:planks" would entirely prevent the requirement for the alternative Jukebox recipes).
Upon further review, both Moss Carpet are also missing the Priority field:
{
"format_version": "1.20.10",
"minecraft:recipe_shaped": {
"description": {
"identifier": "minecraft:moss_carpet"
},
"tags": [ "crafting_table" ],
"group": "carpet",
"pattern": [
"##"
],
"key": {
"#": {
"item": "minecraft:moss_block"
}
},
"unlock": [
{
"item": "minecraft:moss_block"
}
],
"result": {
"item": "minecraft:moss_carpet",
"count": 3
}
}
}
And
{
"format_version": "1.20.30",
"minecraft:recipe_shaped": {
"description": {
"identifier": "minecraft:pale_moss_carpet"
},
"tags": [ "crafting_table" ],
"group": "carpet",
"pattern": [
"##"
],
"key": {
"#": {
"item": "minecraft:pale_moss_block"
}
},
"result": {
"item": "minecraft:pale_moss_carpet",
"count": 3
},
"unlock": [
{
"item": "minecraft:pale_moss_block"
}
]
}
}
Dried Kelp Block is also missing the Priority.
{
"format_version": "1.20.10",
"minecraft:recipe_shaped": {
"description": {
"identifier": "minecraft:dried_kelp_block"
},
"tags": [ "crafting_table" ],
"pattern": [
"###",
"###",
"###"
],
"key": {
"#": {
"item": "minecraft:dried_kelp"
}
},
"unlock": [
{
"item": "minecraft:dried_kelp"
}
],
"result": {
"item": "minecraft:dried_kelp_block"
}
}
}
Literally, every Wool into Carpet recipe is missing a Priority in the Crafting Recipes.
This lack of Priority makes it difficult to overwrite the Vanilla recipes, because the Default Priority is not immediately obvious unless you specifically go searching for specifically that information, and I don't know where to look for that information, and I was trying to replace the Wool to Carpet Recipes to make it 2 Wool per Carpet instead of 1.5 Wool per Carpet. Also, it would be nice if you had consistent priorities for the Recipes, as Jukebox uses
"priority": 1while the Jukebox Variants use"priority": -1(meanwhile, the use of"tag": "minecraft:planks"would entirely prevent the requirement for the alternative Jukebox recipes).Upon further review, both Moss Carpet are also missing the Priority field:
And
Dried Kelp Block is also missing the Priority.