From 44363f05e24a8fdb5b3fddb12736ec5e2175e85d Mon Sep 17 00:00:00 2001 From: TheFurryFeline <38586851+TheFurryFeline@users.noreply.github.com> Date: Thu, 18 Apr 2019 22:42:50 -0400 Subject: [PATCH] *Emits an Affirmative Blip* Fixes emotes so that synths can use the *yes emote without it just doing squat. Ported from https://github.com/VOREStation/VOREStation/pull/5076 --- code/modules/mob/living/silicon/robot/emote.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/emote.dm b/code/modules/mob/living/silicon/robot/emote.dm index c34b802f4f..3e0ccb470f 100644 --- a/code/modules/mob/living/silicon/robot/emote.dm +++ b/code/modules/mob/living/silicon/robot/emote.dm @@ -185,7 +185,7 @@ playsound(src.loc, 'sound/machines/buzz-sigh.ogg', 50, 0) m_type = 1 - if("yes") + if("yes", "ye") //TFF 18/4/19: Polaris fix - make synths able to use *yes emote var/M = null if(param) for (var/mob/A in view(null, null))