fix kick bug (used the wrong variable like a rea tarp)

This commit is contained in:
Elijah R 2024-01-03 20:50:44 -05:00
parent d428667d6a
commit 9c985928fe

View file

@ -42,6 +42,6 @@ public class RateLimiter
isRunning = false;
requestCount = 0;
timer.Stop();
timer.Interval = limit * 1000;
timer.Interval = interval * 1000;
}
}