diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm
index c4ab88a8b45..0c33f21056c 100644
--- a/code/modules/mob/living/carbon/human/emote.dm
+++ b/code/modules/mob/living/carbon/human/emote.dm
@@ -394,9 +394,11 @@
message = "[src] coughs!"
m_type = 2
if(gender == FEMALE)
- playsound(src, pick(species.female_cough_sounds), 120)
+ if(species.female_cough_sounds)
+ playsound(src, pick(species.female_cough_sounds), 120)
else
- playsound(src, pick(species.male_cough_sounds), 120)
+ if(species.male_cough_sounds)
+ playsound(src, pick(species.male_cough_sounds), 120)
else
message = "[src] makes a strong noise."
m_type = 2