mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-24 04:28:12 +01:00
Merge pull request #10309 from Novacat/nova-basicfixes
Fixes Scream sounds
This commit is contained in:
@@ -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 ..()
|
||||
Reference in New Issue
Block a user