From b8d71397921ceca63e164225d2f0521a041804b9 Mon Sep 17 00:00:00 2001 From: kno10 Date: Wed, 31 Jul 2024 03:18:53 +0200 Subject: [PATCH] Fix iron golem attack animation (#4542) C.f. MCLA Reviewed-on: https://git.minetest.land/VoxeLibre/VoxeLibre/pulls/4542 Reviewed-by: the-real-herowl Co-authored-by: kno10 Co-committed-by: kno10 --- mods/ENTITIES/mobs_mc/iron_golem.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ENTITIES/mobs_mc/iron_golem.lua b/mods/ENTITIES/mobs_mc/iron_golem.lua index b79971b9b..774a599a6 100644 --- a/mods/ENTITIES/mobs_mc/iron_golem.lua +++ b/mods/ENTITIES/mobs_mc/iron_golem.lua @@ -83,8 +83,8 @@ mcl_mobs.register_mob("mobs_mc:iron_golem", { stand_speed = 15, walk_speed = 15, run_speed = 25, punch_speed = 15, stand_start = 0, stand_end = 0, walk_start = 0, walk_end = 40, - run_start = 0, run_end = 40, - punch_start = 40, punch_end = 50, + run_start = 40, run_end = 80, + punch_start = 80, punch_end = 90, }, jump = true, do_custom = function(self, dtime)