From 59cdb29105ebe72190360412c612dd060ee23a22 Mon Sep 17 00:00:00 2001 From: milimoe Date: Tue, 25 Feb 2025 00:46:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=89=8A=E5=BC=B1=E4=BA=86=E5=BD=93=E6=89=BF?= =?UTF-8?q?=E5=8F=97=E4=BC=A4=E5=AE=B3=E4=B8=BA0=E6=97=B6=E4=BA=A7?= =?UTF-8?q?=E7=94=9F=E7=9A=84Rating?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OshimaServers/Service/FunGameService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OshimaServers/Service/FunGameService.cs b/OshimaServers/Service/FunGameService.cs index 97df93d..6fec454 100644 --- a/OshimaServers/Service/FunGameService.cs +++ b/OshimaServers/Service/FunGameService.cs @@ -1441,7 +1441,7 @@ namespace Oshima.FunGame.OshimaServers.Service } // 伤害贡献 - double logDamageContribution = Math.Log(1 + (stats.TotalDamage / (stats.TotalTakenDamage + 1e-6))); + double logDamageContribution = Math.Log(1 + (stats.TotalDamage / (stats.TotalTakenDamage + 1))); // 存活时间贡献 double liveTimeContribution = Math.Log(1 + (stats.LiveTime / (stats.TotalTakenDamage + 0.01) * 100));