From 22d7731fb39394aa5b0c3da9996b549dbd4e1605 Mon Sep 17 00:00:00 2001 From: uraniummeltdown Date: Thu, 19 Jan 2017 06:10:43 +0400 Subject: [PATCH] << -> to_chat --- code/modules/research/xenobiology/xenobiology.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/research/xenobiology/xenobiology.dm b/code/modules/research/xenobiology/xenobiology.dm index e73c982d674..439c037d0ba 100644 --- a/code/modules/research/xenobiology/xenobiology.dm +++ b/code/modules/research/xenobiology/xenobiology.dm @@ -234,10 +234,10 @@ if(prompted || !ismob(M)) return if(!isanimal(M) || M.ckey) //much like sentience, these will not work on something that is already player controlled - user << "[M] already has a higher consciousness!" + to_chat(user, "[M] already has a higher consciousness!") return ..() if(M.stat) - user << "[M] is dead!" + to_chat(user, "[M] is dead!") return ..() var/mob/living/simple_animal/SM = M if(SM.sentience_type != animal_type)