Fixes Scream sounds

This commit is contained in:
Chompstation Bot
2021-05-13 15:07:59 +00:00
parent 83a2fdc561
commit 3837c57c0d
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/decl/emote/audible/scream/get_emote_sound(var/atom/user)
var/mob/living/carbon/human/H = user
if(H.get_gender() == FEMALE)
return list(
"sound" = H.species.female_scream_sound,
"vol" = emote_volume
)
else
return list(
"sound" = H.species.male_scream_sound,
"vol" = emote_volume
)
return ..()