mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Fixes Scream sounds
This commit is contained in:
13
code/modules/emotes/definitions/audible_scream_vr.dm
Normal file
13
code/modules/emotes/definitions/audible_scream_vr.dm
Normal 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 ..()
|
||||
Reference in New Issue
Block a user