Fabric API

Fabric API

106M Downloads

Fabric Wiki Outdated (creating recipes)

messycode0 opened this issue ยท 1 comments

commented

For https://fabricmc.net/wiki/tutorial:recipes

{
  "type": "minecraft:crafting_shaped",
  "pattern": [
    "WWW",
    "WR ",
    "WWW"
  ],
  "key": {
    "W": {
      "tag": "minecraft:logs"
    },
    "R": {
      "item": "minecraft:redstone"
    }
  },
  "result": {
    "item": "tutorial:custom_item",
    "count": 4
  }
}

for 1.20.5+
in the "result", it should not be "item" rather it should be "id"

{
  "type": "minecraft:crafting_shaped",
  "pattern": [
    "WWW",
    "WR ",
    "WWW"
  ],
  "key": {
    "W": {
      "tag": "minecraft:logs"
    },
    "R": {
      "item": "minecraft:redstone"
    }
  },
  "result": {
    "id": "tutorial:custom_item",
    "count": 4
  }
}

(I dont know why minecraft had the need to change this... lmao)

I actually don't know where to suggest this change... and I figured this would get some attention to edit the wiki.
Thank you! :)

commented

๐Ÿ‘‹ We use the issue tracker exclusively for final bug reports and feature requests. However, this issue appears to be better suited for either a discussion thread, or a message on our discord server. Please post your request on one of these, and the conversation can continue there.