diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 8e9a005b6b..78166018b4 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -324,7 +324,7 @@ var/list/_simple_mob_default_emotes = list( /mob/living/carbon/human/get_available_emotes() . = global._human_default_emotes.Copy() if(length(species?.default_emotes)) - . |= species.default_emotes + return . | species.default_emotes /mob/living/simple_mob/get_available_emotes() . = global._simple_mob_default_emotes.Copy()