From 7e959c77948ff4f0f6a1ea6315009cd492917fe3 Mon Sep 17 00:00:00 2001 From: Bakawun Date: Thu, 16 Nov 2023 18:31:45 +0000 Subject: [PATCH] Zombies: lower husk spawn rates The mc wiki says "In Java Edition, husks spawn directly under the sky in groups of 4 in place of 80% of all zombies spawned in desert biomes variants. In Bedrock Edition, husks spawn on the surface in groups of 2-4 in place of 70% of all zombies spawned in desert biomes." We don't spawn regular zombies in the desert, so I lowered the current spawn rate to the same rate as regular zombies --- mods/ENTITIES/mobs_mc/zombie.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ENTITIES/mobs_mc/zombie.lua b/mods/ENTITIES/mobs_mc/zombie.lua index a5b8c2b79..a7cc969a9 100644 --- a/mods/ENTITIES/mobs_mc/zombie.lua +++ b/mods/ENTITIES/mobs_mc/zombie.lua @@ -348,7 +348,7 @@ mcl_mobs:spawn_specific( 0, 7, 30, -6500, +6000, 4, mcl_vars.mg_overworld_min, mcl_vars.mg_overworld_max) @@ -362,7 +362,7 @@ mcl_mobs:spawn_specific( 0, 7, 30, -325, +300, 4, mcl_vars.mg_overworld_min, mcl_vars.mg_overworld_max)