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