Create

Create

86M Downloads

create not recognizing custom recipe

FyrfyX8 opened this issue ยท 1 comments

commented

Describe the Bug

im making an mod with mcreator and wanted to implement an custom recipe but it seems like create isn't recognizing the recipe

here is the json

"type": "create:mechanical_crafting",
"acceptMirrored": false,
"key": {
"A": {
"item": "bluecen:bluecen"
},
"P": {
"item": "minecraft:blaze_rod"
},
"S": {
"item": "minecraft_diamond"
}
},
"pattern": [
"AA ",
"AA",
"AS",
"S",
"P "
],
"result": {
"count": 1,
"item": "bluecen:fyrfys_sword"
}
}

Reproduction Steps

not needed

Expected Result

that the recipe works

Screenshots and Videos

No response

Crash Report or Log

No response

Operating System

Windows 11

Mod Version

0.5.0j

Minecraft Version

1.19.2

Forge Version

43.2.4

Other Mods

No response

Additional Context

No response

commented

You have to put spaces for every empty slot in your case it would be:
"pattern": [
"AA ",
"AA ",
"AS ",
"S ",
"P "
let me know if it helped
[Edit:]
okay it doesnt show the spaces i did just make the lines the same length