From fb4f21cba05c4b5f247a696de4f43a8e1df40fdb Mon Sep 17 00:00:00 2001 From: cora Date: Sun, 22 May 2022 17:16:03 +0200 Subject: [PATCH] entity cramming: spare the children --- mods/ENTITIES/mcl_mobs/api.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ENTITIES/mcl_mobs/api.lua b/mods/ENTITIES/mcl_mobs/api.lua index 442365222..b21707065 100644 --- a/mods/ENTITIES/mcl_mobs/api.lua +++ b/mods/ENTITIES/mcl_mobs/api.lua @@ -2982,7 +2982,7 @@ local function check_entity_cramming(self) local l = o:get_luaentity() if l and clear then l.cram = nil - elseif l and l.cram == nil then + elseif l and l.cram == nil and not self.child then table.insert(ncram,l) elseif not clear and l and l.cram then damage_mob(l,"cramming",cramming_damage)