fix: add non-dye item to mustach recipes
Some checks failed
Build Nightly / Build & Release (push) Failing after 5s

This commit is contained in:
Guz
2026-04-26 18:16:41 -03:00
parent 2b48aead3d
commit 5e91bc68af
3 changed files with 12 additions and 4 deletions

View File

@@ -360,10 +360,11 @@ const ITEMS = {
recipe: {
key: {
A: "minecraft:brown_dye",
B: "minecraft:copper_nugget",
},
pattern: [
" # ", //
"A A",
"ABA",
],
},
},
@@ -380,9 +381,12 @@ const ITEMS = {
recipe: {
key: {
A: "minecraft:brown_dye",
B: "minecraft:copper_nugget",
},
pattern: [
"A#A", //
" # ", //
" B ",
"A A",
],
},
},

View File

@@ -4,11 +4,12 @@
"category": "equipment",
"key": {
"A": "minecraft:brown_dye",
"B": "minecraft:copper_nugget",
"#": "minecraft:leather_helmet"
},
"pattern": [
" # ",
"A A"
"ABA"
],
"result": {
"count": 1,

View File

@@ -4,10 +4,13 @@
"category": "equipment",
"key": {
"A": "minecraft:brown_dye",
"B": "minecraft:copper_nugget",
"#": "minecraft:leather_helmet"
},
"pattern": [
"A#A"
" # ",
" B ",
"A A"
],
"result": {
"count": 1,