added bot punishing feature

This commit is contained in:
rawleyIfowler
2022-03-03 21:33:39 -06:00
parent 4a5ad21b27
commit 4c3501cc97
3 changed files with 6 additions and 6 deletions

View File

@@ -12,6 +12,6 @@ func GenerateCaptchaValues() (int, int) {
func UpdateCaptcha(captcha *[2]int) {
for {
captcha[0], captcha[1] = GenerateCaptchaValues()
time.Sleep(5 * time.Minute)
time.Sleep(30 * time.Minute)
}
}