diff --git a/code/WorkInProgress/Cael_Aislinn/Tajara/say.dm b/code/WorkInProgress/Cael_Aislinn/Tajara/say.dm index 9c327ba5116..e8d23875759 100644 --- a/code/WorkInProgress/Cael_Aislinn/Tajara/say.dm +++ b/code/WorkInProgress/Cael_Aislinn/Tajara/say.dm @@ -491,4 +491,21 @@ for (var/mob/M in eavesdroppers) M << "\blue [src] speaks into their radio..." M << speech_bubble - spawn(30) del(speech_bubble) \ No newline at end of file + spawn(30) del(speech_bubble) + +/living/carbon/human/tajaran/say_understands(var/other) + if (istype(other, /mob/living/silicon/ai)) + return 1 + if (istype(other, /mob/living/silicon/decoy)) + return 1 + if (istype(other, /mob/living/silicon/pai)) + return 1 + if (istype(other, /mob/living/silicon/robot)) + return 1 + if (istype(other, /mob/living/carbon/brain)) + return 1 + if (istype(other, /mob/living/carbon/metroid)) + return 1 + if (istype(other, /mob/living/carbon/human)) + return 1 + return ..() \ No newline at end of file