From e8947759439e3bf2818964b8486b7b6c79dec787 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 5 Dec 2020 23:55:30 +0100 Subject: [PATCH] Tweak zombie/skeleton horse sounds --- mods/ENTITIES/mobs_mc/horse.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/mods/ENTITIES/mobs_mc/horse.lua b/mods/ENTITIES/mobs_mc/horse.lua index 76bbafc4c..74f63e603 100644 --- a/mods/ENTITIES/mobs_mc/horse.lua +++ b/mods/ENTITIES/mobs_mc/horse.lua @@ -363,6 +363,7 @@ skeleton_horse.sounds = { death = "mobs_mc_skeleton_death", damage = "mobs_mc_skeleton_hurt", eat = "mobs_mc_animal_eat_generic", + base_pitch = 0.95, distance = 16, } skeleton_horse.harmed_by_heal = true @@ -379,10 +380,12 @@ zombie_horse.drops = { max = 2,}, } zombie_horse.sounds = { - random = "mobs_mc_zombie_growl", - death = "mobs_mc_zombie_death", - damage = "mobs_mc_zombie_hurt", + random = "mobs_mc_horse_random", + -- TODO: Separate damage sound + damage = "mobs_mc_horse_death", + death = "mobs_mc_horse_death", eat = "mobs_mc_animal_eat_generic", + base_pitch = 0.5, distance = 16, } zombie_horse.harmed_by_heal = true