Update life.dm

This commit is contained in:
radiantAurora
2021-11-20 14:32:55 +00:00
committed by GitHub
parent 5427358e0f
commit dd6cfb293f
+1 -1
View File
@@ -987,7 +987,7 @@
belch_prob = ((nutrition-500)/3575)*5 //Scale belch prob with fullness if not already at max. If editing make sure the multiplier matches the max prob above.
if(prob(belch_prob))
var/sound/belchsound = sound(get_sfx("belches"))
playsound(src, belchsound, vol = (30+(belch_prob*8)), vary = 1, falloff = 0.1, ignore_walls = TRUE, preference = /datum/client_preference/belch_noises)
playsound(src, belchsound, vol = (20+(belch_prob*8)), vary = 1, falloff = 0.1, ignore_walls = TRUE, preference = /datum/client_preference/belch_noises)
custom_emote(AUDIBLE_MESSAGE, "belches.") //Don't know if this should stay, I'll leave in in for now.
//CHOMPEdit End