From 0a95af3c8b1d2a406a1512a2fd91fdafb7323d52 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 2 Sep 2025 01:19:51 +0100 Subject: [PATCH] tags to stop mars saplings from being destroyed --- kubejs/startup_scripts/tfg/blocks.plants.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/kubejs/startup_scripts/tfg/blocks.plants.js b/kubejs/startup_scripts/tfg/blocks.plants.js index 83099b7fc..ae8bbf71c 100644 --- a/kubejs/startup_scripts/tfg/blocks.plants.js +++ b/kubejs/startup_scripts/tfg/blocks.plants.js @@ -289,30 +289,31 @@ const registerTFGCrops = (event) => { event.create('tfg:saplings/crimson', 'tfc:sapling') .features('tfg:mars/tree/crimson') - .translationKey('minecraft.block.crimson_fungus') + .tagBlock('tfg:do_not_destroy_in_space') .growthDays(6) event.create('tfg:saplings/warped', 'tfc:sapling') .features('tfg:mars/tree/warped') - .translationKey('minecraft.block.warped_fungus') + .tagBlock('tfg:do_not_destroy_in_space') .growthDays(6) event.create('tfg:saplings/alphacene', 'tfc:sapling') .features('species:alphacene_mushroom') - .translationKey('species.block.alphacene_mushroom') + .tagBlock('tfg:do_not_destroy_in_space') .growthDays(3) event.create('tfg:saplings/strophar', 'tfc:sapling') .features('tfg:mars/tree/strophar') - .translationKey('ad_astra.block.strophar_mushroom') + .tagBlock('tfg:do_not_destroy_in_space') .growthDays(7) event.create('tfg:saplings/aeronos', 'tfc:sapling') .features('tfg:mars/tree/aeronos') - .translationKey('ad_astra.block.strophar_mushroom') + .tagBlock('tfg:do_not_destroy_in_space') .growthDays(9) event.create('tfg:saplings/glacian', 'tfc:sapling') .features('tfg:mars/tree/glacian') + .tagBlock('tfg:do_not_destroy_in_space') .growthDays(9) } \ No newline at end of file