From 8013b4756d6030a4ca30a1321cb3ed63708cfd9e Mon Sep 17 00:00:00 2001 From: Pyritie Date: Wed, 9 Jul 2025 21:34:07 +0100 Subject: [PATCH] fixed the wild rapeseed/sunflowers not dropping their products --- kubejs/startup_scripts/tfg/blocks.crops.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kubejs/startup_scripts/tfg/blocks.crops.js b/kubejs/startup_scripts/tfg/blocks.crops.js index 66a9a90a2..e7ce1f93c 100644 --- a/kubejs/startup_scripts/tfg/blocks.crops.js +++ b/kubejs/startup_scripts/tfg/blocks.crops.js @@ -28,6 +28,7 @@ const registerTFGCrops = (event) => { .translationKey('block.tfg.sunflower_wild') .soundType('crop') .seeds('tfg:sunflower_seeds') + .food('tfg:sunflower_product') .hardness(0.2) .tagBoth('tfc:wild_crops') .tagItem('c:hidden_from_recipe_viewers') @@ -56,6 +57,7 @@ const registerTFGCrops = (event) => { .translationKey('block.tfg.rapeseed_wild') .soundType('crop') .seeds('tfg:rapeseed_seeds') + .food('tfg:rapeseed_product') .hardness(0.2) .tagBoth('tfc:wild_crops') .tagItem('c:hidden_from_recipe_viewers')