Create: Framed

Create: Framed

2M Downloads

Cardboard Window recipe is broken (1.20.x)

PINPAL opened this issue ยท 1 comments

commented

Description

The recipes for the "Cardboard Window" and "Cardboard Window Pane" are unable to be crafted due to their recipe being misconfigured. The game will also spit out errors during datapack loading:

[WARN] Failed to parse recipe 'createframed:window/panes/cardboard_window_pane[minecraft:crafting_shaped]'! Falling back to vanilla: ItemStack 'result' can't be empty!
[WARN] Failed to parse recipe 'createframed:window/cardboard_window[minecraft:crafting_shaped]'! Falling back to vanilla: ItemStack 'result' can't be empty!

Further Detail

The actual issue itself is rather simple, inside of the result section of the recipe, it uses id where it should be using item. This is likely because of copying over the recipe to the 1.20.x branch from originally creating it for 1.21 (due to recipe json changes).

For example, the following can be found in the recipe:

"result": {
    "count": 2,
    "id": "createframed:cardboard_window"
}

The actual recipe SHOULD be:

"result": {
    "count": 2,
    "item": "createframed:cardboard_window"
}

Affected Versions

  • Issue present on both NeoForge/Forge 1.20.1
  • Tested on latest version of Create Framed 1.6.1
commented

Should now be fixed! lmk if you come across any other issues!