Poll notifications every 15 seconds

This commit is contained in:
ekzyis 2024-09-23 06:35:55 +02:00
parent 2c6018755f
commit 9a6579b6f8
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ func main() {
for { for {
tickGameStart(c) tickGameStart(c)
tickGameProgress(c) tickGameProgress(c)
time.Sleep(30 * time.Second) time.Sleep(15 * time.Second)
} }
} }