diff --git a/mods/ENTITIES/mobs_mc/LICENSE-media.md b/mods/ENTITIES/mobs_mc/LICENSE-media.md index 3f85bfc8b..47a0424e9 100644 --- a/mods/ENTITIES/mobs_mc/LICENSE-media.md +++ b/mods/ENTITIES/mobs_mc/LICENSE-media.md @@ -115,6 +115,9 @@ Origin of those models: * Source: * [NPXcoot](https://github.com/NPXcoot1) (CC BY-SA 4.0) * `mobs_mc_ender_dragon_*` +* [bevibeldesign](https://freesound.org/people/bevibeldesign/) + * `mobs_mc_wither_spawn.ogg` (CC0) + * Source: * Blender Foundation (CC BY 3.0) * `mobs_sheep.ogg`, * daufinsyd (MIT License) diff --git a/mods/ENTITIES/mobs_mc/sounds/mobs_mc_wither_spawn.ogg b/mods/ENTITIES/mobs_mc/sounds/mobs_mc_wither_spawn.ogg new file mode 100644 index 000000000..8f0061144 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/sounds/mobs_mc_wither_spawn.ogg differ diff --git a/mods/ENTITIES/mobs_mc/wither.lua b/mods/ENTITIES/mobs_mc/wither.lua index b3b79d6e3..66200dc10 100644 --- a/mods/ENTITIES/mobs_mc/wither.lua +++ b/mods/ENTITIES/mobs_mc/wither.lua @@ -63,6 +63,9 @@ mobs:register_mob("mobs_mc:wither", { run_start = 0, run_end = 20, }, harmed_by_heal = true, + on_spawn = function(self) + minetest.sound_play("mobs_mc_wither_spawn", {object=self.object, gain=1.0, max_hear_distance=64}) + end, }) local mobs_griefing = minetest.settings:get_bool("mobs_griefing") ~= false