diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm
index 526af699a3e..c874a5c99da 100644
--- a/code/modules/mob/living/carbon/human/emote.dm
+++ b/code/modules/mob/living/carbon/human/emote.dm
@@ -76,7 +76,7 @@
else
message = "[src] pings."
playsound(src.loc, 'sound/machines/ping.ogg', 50, 0)
- m_type = 1
+ m_type = 2
if("buzz", "buzzes")
var/M = null
@@ -93,7 +93,7 @@
else
message = "[src] buzzes."
playsound(src.loc, 'sound/machines/buzz-sigh.ogg', 50, 0)
- m_type = 1
+ m_type = 2
if("beep", "beeps")
var/M = null
@@ -110,7 +110,7 @@
else
message = "[src] beeps."
playsound(src.loc, 'sound/machines/twobeep.ogg', 50, 0)
- m_type = 1
+ m_type = 2
if("squish", "squishes")
var/M = null
@@ -127,7 +127,7 @@
else
message = "[src] squishes."
playsound(src.loc, 'sound/effects/slime_squish.ogg', 50, 0) //Credit to DrMinky (freesound.org) for the sound.
- m_type = 1
+ m_type = 2
if("yes")
var/M = null
@@ -144,7 +144,7 @@
else
message = "[src] emits an affirmative blip."
playsound(src.loc, 'sound/machines/synth_yes.ogg', 50, 0)
- m_type = 1
+ m_type = 2
if("no")
var/M = null
@@ -161,7 +161,7 @@
else
message = "[src] emits a negative blip."
playsound(src.loc, 'sound/machines/synth_no.ogg', 50, 0)
- m_type = 1
+ m_type = 2
if("wag", "wags")
if(body_accessory)
@@ -177,6 +177,7 @@
return
else
return
+ m_type = 1
if("swag", "swags")
if(species.bodyflags & TAIL_WAGGING || body_accessory)
@@ -184,6 +185,7 @@
src.stop_tail_wagging(1)
else
return
+ m_type = 1
if ("airguitar")
if (!src.restrained())
@@ -409,6 +411,7 @@
message = "[src] glares at [param]."
else
message = "[src] glares."
+ m_type = 1
if ("stare", "stares")
var/M = null
@@ -424,6 +427,7 @@
message = "[src] stares at [param]."
else
message = "[src] stares."
+ m_type = 1
if ("look", "looks")
var/M = null
diff --git a/code/modules/mob/living/silicon/emote.dm b/code/modules/mob/living/silicon/emote.dm
index dace3f40060..7da4fe1f2ca 100644
--- a/code/modules/mob/living/silicon/emote.dm
+++ b/code/modules/mob/living/silicon/emote.dm
@@ -39,7 +39,7 @@
else
message = "[src] pings."
playsound(src.loc, 'sound/machines/ping.ogg', 50, 0)
- m_type = 1
+ m_type = 2
if("buzz")
var/M = null
@@ -56,7 +56,7 @@
else
message = "[src] buzzes."
playsound(src.loc, 'sound/machines/buzz-sigh.ogg', 50, 0)
- m_type = 1
+ m_type = 2
if("beep")
var/M = null
@@ -73,7 +73,7 @@
else
message = "[src] beeps."
playsound(src.loc, 'sound/machines/twobeep.ogg', 50, 0)
- m_type = 1
+ m_type = 2
if("yes")
var/M = null
@@ -90,7 +90,7 @@
else
message = "[src] emits an affirmative blip."
playsound(src.loc, 'sound/machines/synth_yes.ogg', 50, 0)
- m_type = 1
+ m_type = 2
if("no")
var/M = null
@@ -107,6 +107,6 @@
else
message = "[src] emits a negative blip."
playsound(src.loc, 'sound/machines/synth_no.ogg', 50, 0)
- m_type = 1
+ m_type = 2
..(act, m_type, message)
\ No newline at end of file