From 6a93089e9d76369efddb219a2db8be044e3aa4d1 Mon Sep 17 00:00:00 2001 From: Fox McCloud Date: Wed, 19 Feb 2020 23:09:22 -0500 Subject: [PATCH] styling --- code/modules/mob/living/carbon/human/emote.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index ddddd221603..01c2d773d51 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -513,7 +513,7 @@ playsound(loc, pick(dna.species.male_dying_gasp_sounds), 100, 1, frequency = get_age_pitch()) else - playsound(loc, "[dna.species.gasp_sound]", 15, 1, frequency = get_age_pitch()) + playsound(loc, dna.species.gasp_sound, 15, 1, frequency = get_age_pitch()) m_type = 2 else message = "[src] makes a weak noise." @@ -837,9 +837,9 @@ message = "[src] [dna.species.scream_verb][M ? " at [M]" : ""]!" m_type = 2 if(gender == FEMALE) - playsound(loc, "[dna.species.female_scream_sound]", 80, 1, frequency = get_age_pitch()) + playsound(loc, dna.species.female_scream_sound, 80, 1, frequency = get_age_pitch()) else - playsound(loc, "[dna.species.male_scream_sound]", 80, 1, frequency = get_age_pitch()) //default to male screams if no gender is present. + playsound(loc, dna.species.male_scream_sound, 80, 1, frequency = get_age_pitch()) //default to male screams if no gender is present. else message = "[src] makes a very loud noise[M ? " at [M]" : ""]."