From 27d49d239ac382fcaefecb8db9fddf4fdf3fb2c1 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 20 Jun 2021 23:55:26 +0200 Subject: [PATCH] [MIRROR] Fixes custom emotes not working with slimes (#6409) * Fixes custom emotes not working with slimes (#59680) Allows slimes to use hotkey emotes and custom emotes by removing /mob/living/simple_animal/slime from mob_type_blacklist_typecache in code/modules/mob/living/emote.dm, added by #22405 * Fixes custom emotes not working with slimes Co-authored-by: Bytube <40742162+Bytube@users.noreply.github.com> --- code/modules/mob/living/emote.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/emote.dm b/code/modules/mob/living/emote.dm index eb3310e1f06..43c9b149a57 100644 --- a/code/modules/mob/living/emote.dm +++ b/code/modules/mob/living/emote.dm @@ -2,7 +2,7 @@ /* EMOTE DATUMS */ /datum/emote/living mob_type_allowed_typecache = /mob/living - mob_type_blacklist_typecache = list(/mob/living/simple_animal/slime, /mob/living/brain) + mob_type_blacklist_typecache = list(/mob/living/brain) /datum/emote/living/blush key = "blush"