From 7cf97960d9f2029b9823bbcf8956e2e846c0cf6c Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 28 Oct 2025 19:50:50 +0000 Subject: [PATCH] fix bulbkin plants not dropping seeds --- CHANGELOG.md | 1 + .../loot_tables/blocks/cave_pumpkin_wild.json | 20 +++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 kubejs/data/betterend/loot_tables/blocks/cave_pumpkin_wild.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a37cacf1..dda25c682 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,7 @@ - Fixed aqueduct recipes (#2101) @vidal-adrien - Fixed some AFC logs not having stripping recipes @Pyritie - Fixed some issues related to AE2 blocking mode @ko-lja +- Fixed wild bulbkin plants not dropping bulbkin seeds @Pyritie ### Translation updates - Chinese (simplified) @jmecn - Ukranian @MetEnBouldry diff --git a/kubejs/data/betterend/loot_tables/blocks/cave_pumpkin_wild.json b/kubejs/data/betterend/loot_tables/blocks/cave_pumpkin_wild.json new file mode 100644 index 000000000..d08a12f7b --- /dev/null +++ b/kubejs/data/betterend/loot_tables/blocks/cave_pumpkin_wild.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "betterend:cave_pumpkin_plant_seeds" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file