mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 02:21:06 +01:00
Fix iron golem attack animation (#4542)
C.f. MCLA Reviewed-on: https://git.minetest.land/VoxeLibre/VoxeLibre/pulls/4542 Reviewed-by: the-real-herowl <the-real-herowl@noreply.git.minetest.land> Co-authored-by: kno10 <erich.schubert@gmail.com> Co-committed-by: kno10 <erich.schubert@gmail.com>
This commit is contained in:
parent
cddc1982be
commit
b8d7139792
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue