From 3299640dcedea53048b448f3de9dc4afbed109eb Mon Sep 17 00:00:00 2001 From: Spaghetti-bit Date: Mon, 22 Jul 2024 00:44:07 -0700 Subject: [PATCH] Prevents a rate limit when alt clicking or receiving a ping from the server. (#26127) --- code/modules/client/client_procs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index d7f50b1ea28..c17a7a826a8 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -80,7 +80,7 @@ return var/stl = 10 // 10 topics a second - if(!holder && href_list["window_id"] != "statbrowser") // Admins are allowed to spam click, deal with it. + if(!holder && href_list["window_id"] != "statbrowser" && href_list["window_id"] != "chat_panel") // Admins are allowed to spam click, deal with it. var/second = round(world.time, 10) if(!topiclimiter) topiclimiter = new(LIMITER_SIZE)