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" +}