From 33db29d4c3c70e501cd452b0e75f56cfbd1de7e2 Mon Sep 17 00:00:00 2001 From: Sergeant Acoustic Date: Sun, 15 Mar 2026 22:20:40 +0000 Subject: [PATCH] Make ender chests drop without silk touch --- CHANGELOG.md | 4 ++++ .../loot_table/blocks/ender_chest.json | 21 +++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 overrides/global_packs/mc_rebalance_datapack/data/minecraft/loot_table/blocks/ender_chest.json diff --git a/CHANGELOG.md b/CHANGELOG.md index fa6b545..e8aa5b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added C2ME +### Changed + +- Ender chests drop without silk touch + ## [2.0.0] Initial 2.0.0 release diff --git a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/loot_table/blocks/ender_chest.json b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/loot_table/blocks/ender_chest.json new file mode 100644 index 0000000..69bbdae --- /dev/null +++ b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/loot_table/blocks/ender_chest.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:ender_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/ender_chest" +}