diff --git a/src/HttpServer/logic/httpserver.go b/src/HttpServer/logic/httpserver.go index d061ac7..bedf172 100644 --- a/src/HttpServer/logic/httpserver.go +++ b/src/HttpServer/logic/httpserver.go @@ -26,7 +26,7 @@ func StartHttpTicker() { for range ticker.C { nowtime := int(time.Now().Unix()) hour := time.Now().Hour() - if hour >= 6 && hour <= 10 { + if hour >= 6 && hour <= 22 { if nowtime-gLastChatTime >= 20*60 { gLastChatTime = nowtime HandleRandWorldChat() -- libgit2 0.21.0