From 4bfcd6f7d44c203df0ef15a5998f0acee365f58a Mon Sep 17 00:00:00 2001 From: thederpysockdude123 Date: Wed, 7 Jan 2026 17:45:52 -0700 Subject: [PATCH] removed sandworm spawning in the vanilla Minecraft desert biome (#2662) Signed-off-by: thederpysockdude123 --- kubejs/server_scripts/tfg/mars/tags.mars.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kubejs/server_scripts/tfg/mars/tags.mars.js b/kubejs/server_scripts/tfg/mars/tags.mars.js index 202f69c27..f5147aafe 100644 --- a/kubejs/server_scripts/tfg/mars/tags.mars.js +++ b/kubejs/server_scripts/tfg/mars/tags.mars.js @@ -335,6 +335,7 @@ function registerTFGMarsBiomeTags(event) { event.add('sandworm_mod:can_spawn_sandworms', 'tfg:mars/martian_dunes') event.add('sandworm_mod:can_spawn_sandworms', 'tfg:mars/martian_deep_desert') + event.remove('sandworm_mod:can_spawn_sandworms', 'minecraft:desert') event.add('tfg:has_dark_sand_particles', 'tfg:mars/martian_dunes') event.add('tfg:has_dark_sand_particles', 'tfg:mars/martian_deep_desert') @@ -526,4 +527,4 @@ function registerTFGMarsPlacedFeatures(event) { event.add("tfg:mars_top_layer_modification", "tfg:glow_lichen") event.add("tfg:mars_top_layer_modification", "tfc:surface_loose_rocks") event.add("tfg:mars_top_layer_modification", "tfg:mars/terrain/mars_poles") -} \ No newline at end of file +}