Fixes Scream sounds

This commit is contained in:
Unknown
2021-05-12 12:39:08 -04:00
parent 87127f81a8
commit f1320f86b7
2 changed files with 14 additions and 0 deletions
@@ -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 ..()