minecraft-data icon indicating copy to clipboard operation
minecraft-data copied to clipboard

[1.20.2] Incorrect recipes, and inconsistent shape format

Open ratquaza opened this issue 8 months ago • 2 comments

Noticed that the crafting table recipe is wrong - describes it as an L shape instead of a square:

    {
      "inShape": [
        [ 23, 23, 23 ], 
        [ 23, null, null ]
      ],
      "result": {
        "id": 278,
        "count": 1
      }
    }

Haven't found any other incorrect recipes, but there may be more.

Secondly, there's an inconsistency with the format of recipe shapes - some recipes define each array as a "row" in the crafting grid, e.g Sandstone Wall:

      "inShape": [
        [ 169, 169, 169 ],
        [ 169, 169, 169 ]
      ]

image

But then for a Redstone Torch, each array is a "column":

      "inShape": [
        [
          635,
          807,
          null
        ]
      ]

image

ratquaza avatar Nov 28 '23 06:11 ratquaza