From 10f0be05bb91cffb2d507307e186a24642c2c840 Mon Sep 17 00:00:00 2001 From: Alex 'Avunia' Takiya Date: Thu, 31 Dec 2020 00:50:14 +0100 Subject: [PATCH] Fix me emotes being affected by cooldown, oops (#2387) --- modular_skyrat/modules/emotes/code/emotes.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modular_skyrat/modules/emotes/code/emotes.dm b/modular_skyrat/modules/emotes/code/emotes.dm index c1a10987377..eb5896b7115 100644 --- a/modular_skyrat/modules/emotes/code/emotes.dm +++ b/modular_skyrat/modules/emotes/code/emotes.dm @@ -10,6 +10,11 @@ //Disables the custom emote blacklist from TG that normally applies to slimes. /datum/emote/living/custom mob_type_blacklist_typecache = list(/mob/living/brain) + cooldown = 0 + +//me-verb emotes should not have a cooldown check +/datum/emote/living/custom/check_cooldown(mob/user, intentional) + return TRUE /datum/emote/living/quill key = "quill"