Skip to content

Commit

Permalink
[MIRROR] FIX: Humans can choke now
Browse files Browse the repository at this point in the history
  • Loading branch information
LordNest authored and SuhEugene committed Feb 6, 2024
1 parent a9f9ebb commit 5adf40c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions code/modules/emotes/definitions/_mob.dm
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@
/singleton/emote/visible/shrug,
/singleton/emote/visible/smile,
/singleton/emote/visible/pale,
/singleton/emote/audible/choke,
/singleton/emote/visible/tremble,
/singleton/emote/visible/wink,
/singleton/emote/visible/hug,
Expand Down
3 changes: 2 additions & 1 deletion code/modules/emotes/emote_mob.dm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@

var/singleton/emote/use_emote = usable_emotes[act]
if(!use_emote)
to_chat(src, SPAN_WARNING("Unknown emote '[act]'. Type <b>say *help</b> for a list of usable emotes."))
var/emote_prefix = get_prefix_key(/singleton/prefix/custom_emote)
to_chat(src, SPAN_WARNING("Unknown emote '[act]'. Type <b>say [emote_prefix]help</b> for a list of usable emotes."))
return

if(m_type != use_emote.message_type && use_emote.conscious && stat != CONSCIOUS)
Expand Down

0 comments on commit 5adf40c

Please sign in to comment.