From afe4edb21496e7b999a1a7a110e59d949469be44 Mon Sep 17 00:00:00 2001 From: 李旭 <> Date: Thu, 12 May 2022 18:05:57 +0800 Subject: [PATCH] 发放金币除以4 --- 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 55cd9e4..486b9e0 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 / 2) + cfg.Reward = int(cfg.Reward / 4) } //加金币 -- libgit2 0.21.0