From 2c425a79c3d1c6f735e45e6a13d84cacb1029a8f Mon Sep 17 00:00:00 2001 From: TheGreatKitsune Date: Thu, 8 Dec 2022 15:44:01 -0600 Subject: [PATCH] Add full message you used when accidentally emoting --- code/modules/emotes/emote_mob.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/emotes/emote_mob.dm b/code/modules/emotes/emote_mob.dm index 7e5ad1caf0..a0fc782654 100644 --- a/code/modules/emotes/emote_mob.dm +++ b/code/modules/emotes/emote_mob.dm @@ -80,7 +80,7 @@ var/decl/emote/use_emote = get_emote_by_key(act) if(!istype(use_emote)) - to_chat(src, SPAN_WARNING("Unknown emote '[act]'. Type say *help for a list of usable emotes.")) + to_chat(src, SPAN_WARNING("Unknown emote '[act]'. Type say *help for a list of usable emotes. ([act] [message]")) //CHOMPEdit - Add full message in the event you used * instead of ! or something like that return if(!use_emote.mob_can_use(src))