FabricMC / fabric

Essential hooks for modding with Fabric.
Apache License 2.0
2.2k stars 388 forks source link

Fabric Wiki Outdated (creating recipes) #3876

Closed messycode0 closed 1 week ago

messycode0 commented 1 week ago

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! :)

github-actions[bot] commented 1 week ago

👋 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.