From 697f5d800382e57ae4f30fa30d3c967059f0573e Mon Sep 17 00:00:00 2001 From: milimoe Date: Fri, 20 Jun 2025 01:03:35 +0800 Subject: [PATCH] BUG --- Library/Tests/FunGame.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Tests/FunGame.cs b/Library/Tests/FunGame.cs index 81827ed..4c46145 100644 --- a/Library/Tests/FunGame.cs +++ b/Library/Tests/FunGame.cs @@ -806,6 +806,7 @@ namespace Milimoe.FunGame.Testing.Tests totalStats.ActionTurn += stats.ActionTurn; totalStats.LiveTime = Calculation.Round2Digits(totalStats.LiveTime + stats.LiveTime); totalStats.ControlTime = Calculation.Round2Digits(totalStats.ControlTime + stats.ControlTime); + totalStats.TotalShield = Calculation.Round2Digits(totalStats.TotalShield + stats.TotalShield); totalStats.TotalEarnedMoney += stats.TotalEarnedMoney; totalStats.Kills += stats.Kills; totalStats.Deaths += stats.Deaths;