From d8a883e81faa0f5df1df1db0aec276dc68d36bb9 Mon Sep 17 00:00:00 2001 From: kabou Date: Thu, 22 Dec 2022 06:29:31 +0100 Subject: [PATCH] Limit size of cow herds spawning. * Cows should spawn in herds of max 4, not 8. --- mods/ENTITIES/mobs_mc/cow+mooshroom.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ENTITIES/mobs_mc/cow+mooshroom.lua b/mods/ENTITIES/mobs_mc/cow+mooshroom.lua index 5ac5912a4..9de5d1cce 100644 --- a/mods/ENTITIES/mobs_mc/cow+mooshroom.lua +++ b/mods/ENTITIES/mobs_mc/cow+mooshroom.lua @@ -12,7 +12,7 @@ local cow_def = { xp_min = 1, xp_max = 3, collisionbox = {-0.45, -0.01, -0.45, 0.45, 1.39, 0.45}, - spawn_in_group = 8, + spawn_in_group = 4, spawn_in_group_min = 3, visual = "mesh", mesh = "mobs_mc_cow.b3d",