From 2b7386694339f071d5188b8be8b520d94a2ff2e3 Mon Sep 17 00:00:00 2001 From: gretchen Date: Sat, 14 Sep 2024 21:41:36 +0200 Subject: [PATCH] change ctl to 5 lines per second --- .gitignore | 2 ++ libs/ChatThrottleLib.lua | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1c2d52b..894cae6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ .idea/* +.luarc.json +.luarc.json:Zone.Identifier diff --git a/libs/ChatThrottleLib.lua b/libs/ChatThrottleLib.lua index 3de4662..63c5c10 100644 --- a/libs/ChatThrottleLib.lua +++ b/libs/ChatThrottleLib.lua @@ -42,7 +42,7 @@ local MIN_FPS = 20 -- Reduce output CPS to half (and don't burst) if FPS drop -- Turtle seems to allow > 6 lines per second in some situations; but for pure spam throughput, a value of 6 here seems to be the limit. -- Due to timing issues, setting this to 5.75 seems to allow the most throughput without any accidental soft bans. -local TURTLE_MAX_CHAT_LINES_PER_SECOND = 5.75 +local TURTLE_MAX_CHAT_LINES_PER_SECOND = 5 if(ChatThrottleLib and ChatThrottleLib.version>=CTL_VERSION) then -- There's already a newer (or same) version loaded. Buh-bye.