From 542128a9b0384205825bd2d625613fb313d1ae50 Mon Sep 17 00:00:00 2001 From: Belsima Date: Fri, 8 Sep 2017 22:02:07 -0400 Subject: [PATCH] Replaces two super not-lore-friendly messages with one stolen from Bay. --- code/modules/economy/ATM.dm | 2 +- code/modules/security levels/keycard authentication.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/economy/ATM.dm b/code/modules/economy/ATM.dm index ef7e0c572f..68e4c12c86 100644 --- a/code/modules/economy/ATM.dm +++ b/code/modules/economy/ATM.dm @@ -125,7 +125,7 @@ log transactions /obj/machinery/atm/attack_hand(mob/user as mob) if(istype(user, /mob/living/silicon)) - user << "\icon[src] Artificial unit recognized. Artificial units do not currently receive monetary compensation, as per system banking regulation #1005." + to_chat (user, "A firewall prevents you from interfacing with this device!") return if(get_dist(src,user) <= 1) diff --git a/code/modules/security levels/keycard authentication.dm b/code/modules/security levels/keycard authentication.dm index 701ebb24e4..bc5dc64652 100644 --- a/code/modules/security levels/keycard authentication.dm +++ b/code/modules/security levels/keycard authentication.dm @@ -22,7 +22,7 @@ power_channel = ENVIRON /obj/machinery/keycard_auth/attack_ai(mob/user as mob) - user << "The station AI is not to interact with these devices." + to_chat (user, "A firewall prevents you from interfacing with this device!") return /obj/machinery/keycard_auth/attackby(obj/item/weapon/W as obj, mob/user as mob)