From 5e91bc68af8a9ec21e14a88a5482b257a0d015ab Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Sun, 26 Apr 2026 18:16:41 -0300 Subject: [PATCH] fix: add non-dye item to mustach recipes --- .meta/generate_helmets.js | 8 ++++++-- data/sixsides_cosmetics/recipe/mustache.json | 3 ++- data/sixsides_cosmetics/recipe/mustache_2.json | 5 ++++- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.meta/generate_helmets.js b/.meta/generate_helmets.js index e42a8b4..800c85c 100644 --- a/.meta/generate_helmets.js +++ b/.meta/generate_helmets.js @@ -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", ], }, }, diff --git a/data/sixsides_cosmetics/recipe/mustache.json b/data/sixsides_cosmetics/recipe/mustache.json index 9b3f312..75c1da3 100644 --- a/data/sixsides_cosmetics/recipe/mustache.json +++ b/data/sixsides_cosmetics/recipe/mustache.json @@ -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, diff --git a/data/sixsides_cosmetics/recipe/mustache_2.json b/data/sixsides_cosmetics/recipe/mustache_2.json index 895a447..38101e5 100644 --- a/data/sixsides_cosmetics/recipe/mustache_2.json +++ b/data/sixsides_cosmetics/recipe/mustache_2.json @@ -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,