Commit
8ff047d5a1a77f0f58c391ac41e9920f0e2b7199
by nossr50Fix KnockOnWood XP orbs never spawning on nether tree cap blocks during Tree Feller
Nether_Wart_Block and Warped_Wart_Block both have woodcutting XP in
experience.yml AND are in the treeFellerDestructibleWhiteList. The
drop routing in dropTreeFellerLootFromBlocks used an if/else-if
structure, so blocks with woodcutting XP always took the first branch
and never reached the else-if where the KnockOnWood orb logic lived.
Fix: extract the orb spawning block into a standalone if-check that
runs after the drop routing, so it fires for any isNonWoodPartOfTree
block regardless of whether it also has woodcutting XP.
Fixes #5288
(commit: 8ff047d)