From ef0c36eefb0a834c5c5660279b7a8d9742e34149 Mon Sep 17 00:00:00 2001 From: Miniature Date: Thu, 26 Apr 2012 08:46:32 +0930 Subject: [PATCH] Removed an anti-adminimpostor warning from receiving telepathy messages (we really shouldn't need it), and made subtlemessage be thinking like on oldcode. --- code/game/machinery/computer/prisoner.dm | 2 +- code/modules/mob/living/carbon/human/human.dm | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/code/game/machinery/computer/prisoner.dm b/code/game/machinery/computer/prisoner.dm index ddd19232481..efde1f1f012 100644 --- a/code/game/machinery/computer/prisoner.dm +++ b/code/game/machinery/computer/prisoner.dm @@ -98,7 +98,7 @@ var/obj/item/weapon/implant/I = locate(href_list["warn"]) if((I)&&(I.imp_in)) var/mob/living/carbon/R = I.imp_in - R << "\green You hear a voice in your head saying: '[warning]'" + R << "\green You think: '[warning]'" src.add_fingerprint(usr) src.updateUsrDialog() diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index c92cd92b156..3310c962776 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -2782,7 +2782,6 @@ It can still be worn/put on as normal. target.show_message("\blue You hear [src.real_name]'s voice: [say]") else target.show_message("\blue You hear a voice that seems to echo around the room: [say]") - target << "\red This ain't an admin message, this is IC. Act like it. If someone's abusing it, pretending to be us, adminhelp it." usr.show_message("\blue You project your mind into [target.real_name]: [say]") for(var/mob/dead/observer/G in world) G.show_message("Telepathic message from [src] to [target]: [say]")