diff --git a/code/modules/economy/ATM.dm b/code/modules/economy/ATM.dm index ef7e0c572fb..68e4c12c86a 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 701ebb24e48..bc5dc64652d 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)