diff --git a/src/HttpServer/logic/httpserver.go b/src/HttpServer/logic/httpserver.go index 6856231..235c578 100644 --- a/src/HttpServer/logic/httpserver.go +++ b/src/HttpServer/logic/httpserver.go @@ -31,7 +31,7 @@ func StartHttpTicker() { floatval := float32(randint) / 100 G_randVal = 180 + floatval } - if time.Now().Hour() == 12 { + if time.Now().Hour() > 12 && time.Now().Minute() >= 5 { //处理开奖 logger.Info("Handle kaijian") waits := GetWaitCaiCatList() -- libgit2 0.21.0