From 69f2f2c624635eab63ef444dc453e57dc78a63ee Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 4 Nov 2022 18:28:15 +0100 Subject: [PATCH] [MIRROR] [s]Remove false positive heavy modified client admin alert. [MDB IGNORE] (#17355) * [s]Remove false positive heavy modified client admin alert. (#70851) There are too many edge cases and this covers none of them. also i think there is a bug relating to some power of 2 code or maybe some plane/multi-z code or something because these messages are common and admins are ignoring them. This is totally not a ploy to get the bug fixed or the fix merged or whatever. * [s]Remove false positive heavy modified client admin alert. Co-authored-by: Kyle Spier-Swenson --- code/_onclick/ai.dm | 8 -------- 1 file changed, 8 deletions(-) diff --git a/code/_onclick/ai.dm b/code/_onclick/ai.dm index 9b48d909502..4365755455f 100644 --- a/code/_onclick/ai.dm +++ b/code/_onclick/ai.dm @@ -46,14 +46,6 @@ if(isnull(pixel_turf)) return if(!can_see(A)) - if(isturf(A)) //On unmodified clients clicking the static overlay clicks the turf underneath - return //So there's no point messaging admins - 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) - if(REALTIMEOFDAY >= chnotify + 9000) - chnotify = REALTIMEOFDAY - send2tgs_adminless_only("NOCHEAT", message) return if(LAZYACCESS(modifiers, SHIFT_CLICK))