diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm
index 90660bb6039..f35bda25cd4 100644
--- a/code/modules/mob/living/carbon/human/emote.dm
+++ b/code/modules/mob/living/carbon/human/emote.dm
@@ -139,6 +139,8 @@
param = null
if (param)
+ message = "[src] emits an affirmative blip at [param]."
+ else
message = "[src] emits an affirmative blip."
playsound(src.loc, 'sound/machines/synth_yes.ogg', 50, 0)
m_type = 1
@@ -154,6 +156,8 @@
param = null
if (param)
+ message = "[src] emits a negative blip at [param]."
+ else
message = "[src] emits a negative blip."
playsound(src.loc, 'sound/machines/synth_no.ogg', 50, 0)
m_type = 1
diff --git a/code/modules/mob/living/silicon/emote.dm b/code/modules/mob/living/silicon/emote.dm
index 26d6520c586..dace3f40060 100644
--- a/code/modules/mob/living/silicon/emote.dm
+++ b/code/modules/mob/living/silicon/emote.dm
@@ -86,6 +86,8 @@
param = null
if (param)
+ message = "[src] emits an affirmative blip at [param]."
+ else
message = "[src] emits an affirmative blip."
playsound(src.loc, 'sound/machines/synth_yes.ogg', 50, 0)
m_type = 1
@@ -101,6 +103,8 @@
param = null
if (param)
+ message = "[src] emits a negative blip at [param]."
+ else
message = "[src] emits a negative blip."
playsound(src.loc, 'sound/machines/synth_no.ogg', 50, 0)
m_type = 1