Merge pull request #14607 from VOREStation/upstream-merge-8988

[MIRROR] Fixes an oversight with default emote retrieval.
This commit is contained in:
Heroman3003
2023-03-09 15:15:17 +10:00
committed by CHOMPStation2
parent ba25f3c417
commit b83f351431

View File

@@ -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()