From d337f3aa9cfb878545892f8b299907d059a44a05 Mon Sep 17 00:00:00 2001 From: 李旭 <> Date: Fri, 13 Oct 2023 10:33:24 +0800 Subject: [PATCH] 金币除5 --- src/HttpServer/logic/logic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HttpServer/logic/logic.go b/src/HttpServer/logic/logic.go index 486b9e0..feab8d5 100644 --- a/src/HttpServer/logic/logic.go +++ b/src/HttpServer/logic/logic.go @@ -476,7 +476,7 @@ func HandlerFetchproterybox(w http.ResponseWriter, data string) { } if cfg.Reward > 0 { - cfg.Reward = int(cfg.Reward / 4) + cfg.Reward = int(cfg.Reward / 20) } //加金币 -- libgit2 0.21.0