From aa31de9ce88bb3959ea33846da33adfb68a69510 Mon Sep 17 00:00:00 2001 From: Crazylemon Date: Wed, 3 Feb 2016 12:46:49 -0800 Subject: [PATCH] Trapped minds can now understand what the host mob can --- code/game/gamemodes/miniantags/borer/borer.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/game/gamemodes/miniantags/borer/borer.dm b/code/game/gamemodes/miniantags/borer/borer.dm index 6926c7f6067..b5fc14e4e5b 100644 --- a/code/game/gamemodes/miniantags/borer/borer.dm +++ b/code/game/gamemodes/miniantags/borer/borer.dm @@ -26,6 +26,13 @@ if(M.mind && (istype(M, /mob/dead/observer))) M << "Thought-speech, [src] -> [B.truename]: [message]" +/mob/living/captive_brain/say_understands(var/mob/other, var/datum/language/speaking = null) + var/mob/living/simple_animal/borer/B = src.loc + if(!istype(B)) + log_to_dd("Trapped mind found without a borer!") + return 0 + return B.host.say_understands(other, speaking) + /mob/living/captive_brain/emote(var/message) return