From 2aaaf4692aa68fff63eefe3c503e9a0efbf680c6 Mon Sep 17 00:00:00 2001 From: Gamer025 <33846895+Gamer025@users.noreply.github.com> Date: Mon, 10 Oct 2022 04:45:25 +0200 Subject: [PATCH] Exclude statbrowser from seconds topic limiter (#70386) * Exclude statbrowser from seconds topic limiter * Update code/modules/client/client_procs.dm Co-authored-by: Aleksej Komarov Co-authored-by: Aleksej Komarov --- 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 c498395b4c3..3169eaefea1 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -65,7 +65,7 @@ GLOBAL_LIST_INIT(blacklisted_builds, list( return var/stl = CONFIG_GET(number/second_topic_limit) - if (!holder && stl) + if (!holder && stl && href_list["window_id"] != "statbrowser") var/second = round(world.time, 10) if (!topiclimiter) topiclimiter = new(LIMITER_SIZE)