From 5f71efe07a313b8f41b3f6d19680a767b4491744 Mon Sep 17 00:00:00 2001 From: Putnam Date: Sun, 5 Apr 2020 22:41:50 -0700 Subject: [PATCH] Adds a message to the AI to reconnect, since this is a common bug --- code/_onclick/ai.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/_onclick/ai.dm b/code/_onclick/ai.dm index ec4784bd1f..02cbd6bea5 100644 --- a/code/_onclick/ai.dm +++ b/code/_onclick/ai.dm @@ -49,6 +49,7 @@ message_admins("[ADMIN_LOOKUPFLW(src)] might be running a modified client! (failed can_see on AI click of [A] (Turf Loc: [ADMIN_VERBOSEJMP(pixel_turf)]))") var/message = "[key_name(src)] might be running a modified client! (failed can_see on AI click of [A] (Turf Loc: [AREACOORD(pixel_turf)]))" log_admin(message) + to_chat(src, "You're experiencing a bug. Reconnect immediately to fix it. Admins have been notified.") if(REALTIMEOFDAY >= chnotify + 9000) chnotify = REALTIMEOFDAY send2irc_adminless_only("NOCHEAT", message)