From 4582269cab5bde4d9401a7dcaea68cd76e3c71cf Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 2 May 2026 17:29:24 -0700 Subject: [PATCH] feat: drop populated bee nest in Plenty phase Adds a bee_nest custom block (3 bees, honey_level 0) to the Plenty phase block pool with weight 1, matching the existing HONEY_BLOCK and HONEYCOMB_BLOCK density. Closes the honey-farming gap players hit in Plenty: although the phase already drops honeycomb blocks, honey blocks, and honey bottles, there was no way to obtain a hive to farm them. Uses the block-data custom block path, which falls back to /setblock for NBT-bearing data so the nest spawns pre-populated with bees. Refs #512 Co-Authored-By: Claude Opus 4.7 (1M context) --- src/main/resources/phases/8500_plenty.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/resources/phases/8500_plenty.yml b/src/main/resources/phases/8500_plenty.yml index 758153f2..0615f37b 100644 --- a/src/main/resources/phases/8500_plenty.yml +++ b/src/main/resources/phases/8500_plenty.yml @@ -45,6 +45,10 @@ DIRT_PATH: 1 LIGHT_GRAY_TERRACOTTA: 1 SUSPICIOUS_SAND: 1 + custom-blocks: + - type: block + data: 'minecraft:bee_nest[honey_level=0,facing=north]{bees:[{entity_data:{id:"minecraft:bee"},min_ticks_in_hive:600,ticks_in_hive:0},{entity_data:{id:"minecraft:bee"},min_ticks_in_hive:600,ticks_in_hive:0},{entity_data:{id:"minecraft:bee"},min_ticks_in_hive:600,ticks_in_hive:0}]}' + probability: 1 mobs: COW: 1 DONKEY: 1