This commit is contained in:
milimoe 2025-06-20 01:03:35 +08:00
parent 0a6281776b
commit 697f5d8003
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0

View File

@ -806,6 +806,7 @@ namespace Milimoe.FunGame.Testing.Tests
totalStats.ActionTurn += stats.ActionTurn; totalStats.ActionTurn += stats.ActionTurn;
totalStats.LiveTime = Calculation.Round2Digits(totalStats.LiveTime + stats.LiveTime); totalStats.LiveTime = Calculation.Round2Digits(totalStats.LiveTime + stats.LiveTime);
totalStats.ControlTime = Calculation.Round2Digits(totalStats.ControlTime + stats.ControlTime); totalStats.ControlTime = Calculation.Round2Digits(totalStats.ControlTime + stats.ControlTime);
totalStats.TotalShield = Calculation.Round2Digits(totalStats.TotalShield + stats.TotalShield);
totalStats.TotalEarnedMoney += stats.TotalEarnedMoney; totalStats.TotalEarnedMoney += stats.TotalEarnedMoney;
totalStats.Kills += stats.Kills; totalStats.Kills += stats.Kills;
totalStats.Deaths += stats.Deaths; totalStats.Deaths += stats.Deaths;