From c8988595bd9702665bdcdb0e1ff49da42c8e768a Mon Sep 17 00:00:00 2001 From: Sergeant Acoustic Date: Sun, 3 May 2026 20:09:53 +0100 Subject: [PATCH] Fix copper bar/trapdoor recipe conflict --- CHANGELOG.md | 5 +++++ .../data/minecraft/recipe/copper_bars.json | 18 ++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 overrides/resources/common/required/mc_rebalance_datapack/data/minecraft/recipe/copper_bars.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e8de26..94dc7a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +### Fixed +- Copper bars and trapdoors had the same recipe + ## [2.4.0] ### Added diff --git a/overrides/resources/common/required/mc_rebalance_datapack/data/minecraft/recipe/copper_bars.json b/overrides/resources/common/required/mc_rebalance_datapack/data/minecraft/recipe/copper_bars.json new file mode 100644 index 0000000..6b82e50 --- /dev/null +++ b/overrides/resources/common/required/mc_rebalance_datapack/data/minecraft/recipe/copper_bars.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "I": { + "item": "minecraft:copper_ingot" + } + }, + "pattern": [ + "III", + "III", + "III" + ], + "result": { + "count": 24, + "id": "minecraft:copper_bars" + } +}