diff --git a/CHANGELOG.md b/CHANGELOG.md index 3473ee6..c6dc394 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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] + +### Changed + +- Ender chests drop without silk touch + ## [1.3.0] - 2026-02-20 ### Added diff --git a/overrides/global_packs/required_data/mc_rebalance_datapack/data/minecraft/loot_tables/blocks/ender_chest.json b/overrides/global_packs/required_data/mc_rebalance_datapack/data/minecraft/loot_tables/blocks/ender_chest.json new file mode 100644 index 0000000..69bbdae --- /dev/null +++ b/overrides/global_packs/required_data/mc_rebalance_datapack/data/minecraft/loot_tables/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" +}