From 4eb2c49cbf46d0bdd9132a5a9d2ab8926f5d1f28 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sat, 4 Oct 2025 23:58:24 +0100 Subject: [PATCH] remove collision from mars saplings --- kubejs/startup_scripts/tfg/blocks.plants.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/kubejs/startup_scripts/tfg/blocks.plants.js b/kubejs/startup_scripts/tfg/blocks.plants.js index 66f960a81..9ebd16834 100644 --- a/kubejs/startup_scripts/tfg/blocks.plants.js +++ b/kubejs/startup_scripts/tfg/blocks.plants.js @@ -321,6 +321,7 @@ const registerTFGCrops = (event) => { .growthDays(6) .soundType('nether_wart') .defaultCutout() + .noCollision() event.create('tfg:saplings/warped', 'tfc:sapling') .features('tfg:mars/tree/warped') @@ -330,6 +331,7 @@ const registerTFGCrops = (event) => { .growthDays(6) .soundType('nether_wart') .defaultCutout() + .noCollision() event.create('tfg:saplings/alphacene', 'tfc:sapling') .features('species:alphacene_mushroom') @@ -339,6 +341,7 @@ const registerTFGCrops = (event) => { .growthDays(3) .soundType('nether_wart') .defaultCutout() + .noCollision() event.create('tfg:saplings/strophar', 'tfc:sapling') .features('tfg:mars/tree/strophar_mini') @@ -348,6 +351,7 @@ const registerTFGCrops = (event) => { .growthDays(7) .soundType('nether_wart') .defaultCutout() + .noCollision() event.create('tfg:saplings/aeronos', 'tfc:sapling') .features('tfg:mars/tree/aeronos_mini') @@ -357,6 +361,7 @@ const registerTFGCrops = (event) => { .growthDays(9) .soundType('nether_wart') .defaultCutout() + .noCollision() event.create('tfg:saplings/glacian', 'tfc:sapling') .features('tfg:mars/tree/glacian_mini') @@ -366,6 +371,7 @@ const registerTFGCrops = (event) => { .growthDays(9) .soundType('nether_wart') .defaultCutout() + .noCollision() // Glacian tree stuff event.create('tfg:glacian_leaves', 'tfc:leaves')