diff --git a/code/modules/emotes/emote_mob.dm b/code/modules/emotes/emote_mob.dm index de292b268a9..14ae2f3fc57 100644 --- a/code/modules/emotes/emote_mob.dm +++ b/code/modules/emotes/emote_mob.dm @@ -61,7 +61,16 @@ return if(act == "help") - to_chat(src,"Usable emotes: [english_list(usable_emotes)]") + var/list/help_text = list() + for(var/emote_key in usable_emotes) + var/emote_text = emote_key + var/singleton/emote/emote = usable_emotes[emote_key] + if(istype(emote, /singleton/emote/audible)) + var/singleton/emote/audible/audible_emote = emote + if(audible_emote.emote_sound) + emote_text = SPAN_NOTICE(emote_key) + help_text += emote_text + to_chat(src,"Usable emotes: [english_list(help_text)]") return if(!can_emote(m_type)) diff --git a/html/changelogs/geeves-HEPL.yml b/html/changelogs/geeves-HEPL.yml new file mode 100644 index 00000000000..19ba23a5d07 --- /dev/null +++ b/html/changelogs/geeves-HEPL.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - rscadd: "The help emote that gives a list of emotes now displays emotes that play a sound in blue."