From 804ee3251d50c9920630ac77d3d501321713b411 Mon Sep 17 00:00:00 2001 From: hahwu <31872165+hahwu@users.noreply.github.com> Date: Wed, 14 Jan 2026 10:46:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=95=86=E5=BA=97=E7=9A=84=E4=BA=A7=E7=89=A9?= =?UTF-8?q?=E7=9B=B4=E8=B4=AD=E4=BB=B7=E6=A0=BC=E8=B0=83=E6=95=B4=E4=B8=BA?= =?UTF-8?q?=EF=BC=9A=E4=BA=A7=E7=89=A9=E6=A0=87=E5=87=86=E9=93=BE=E8=99=9A?= =?UTF-8?q?=E6=8B=9F=E4=BD=93=E5=8A=9B/5=20=20(=E5=8E=9F=E6=9D=A5=E9=99=A4?= =?UTF-8?q?=E6=95=B0=E4=B8=BA18=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/server/game/mod/charge/Charge.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/game/mod/charge/Charge.go b/src/server/game/mod/charge/Charge.go index f832fe30..5204e0a1 100644 --- a/src/server/game/mod/charge/Charge.go +++ b/src/server/game/mod/charge/Charge.go @@ -366,7 +366,7 @@ func (c *ChargeMod) InitChessShop(Emit []int) { ChessLv := mergeDataCfg.GetLvById(c) DynamicLv := mergeDataCfg.GetAdjust(v, p, 0) ChessLv += DynamicLv - Diamond := math.Round(math.Pow(2, float64(ChessLv-1)) / 18) + Diamond := math.Round(math.Pow(2, float64(ChessLv-1)) / 5) Diamond = max(1, Diamond) RandList = append(RandList, &Rand{ChessId: c, Diamond: int(Diamond)}) }