Modify pitch of small slimes and magma cubes

This commit is contained in:
Wuzzy 2019-03-09 00:44:24 +01:00
parent 8b44e6fb7a
commit a5b20b1bf0
3 changed files with 14 additions and 3 deletions

View file

@ -107,11 +107,15 @@ local mob_sound = function(self, sound, is_opinion, fixed_pitch)
end
local pitch
if not fixed_pitch then
local base_pitch = self.sounds.base_pitch
if not base_pitch then
base_pitch = 1
end
if self.child then
-- Children have high pitch
pitch = 1.5
-- Children have higher pitch
pitch = base_pitch * 1.5
else
pitch = 1.0
pitch = base_pitch
end
-- randomize the pitch a bit
pitch = pitch + math.random(-10, 10) * 0.005