From ff5fc89885112beb9c8ce6dcddd618ab56841994 Mon Sep 17 00:00:00 2001 From: cora Date: Sun, 13 Feb 2022 15:06:39 +0100 Subject: [PATCH] hard-disable natural spawning of old mobs --- mods/ENTITIES/mcl_mobs/api/spawning.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ENTITIES/mcl_mobs/api/spawning.lua b/mods/ENTITIES/mcl_mobs/api/spawning.lua index bf07ca94d..9428da306 100644 --- a/mods/ENTITIES/mcl_mobs/api/spawning.lua +++ b/mods/ENTITIES/mcl_mobs/api/spawning.lua @@ -222,7 +222,7 @@ function mobs:spawn_specific(name, dimension, type_of_spawning, biomes, min_ligh --print(dump(biomes)) -- Do mobs spawn at all? - if not mobs_spawn then + if true or not mobs_spawn then --MOBSTUDY disable natural spawning of old mobs(redo) return end