diff --git a/Plugins/Stats/Helpers/StatManager.cs b/Plugins/Stats/Helpers/StatManager.cs index f9d6d3812..1ae366c47 100644 --- a/Plugins/Stats/Helpers/StatManager.cs +++ b/Plugins/Stats/Helpers/StatManager.cs @@ -886,10 +886,10 @@ namespace IW4MAdmin.Plugins.Stats.Helpers victimStats.LastScore = 0; } - var estimatedAttackerScore = attacker.CurrentServer.GameName != Server.Game.SHG1 + var estimatedAttackerScore = attacker.CurrentServer.GameName != Server.Game.CSGO ? attacker.Score : attackerStats.SessionKills * 50; - var estimatedVictimScore = attacker.CurrentServer.GameName != Server.Game.SHG1 + var estimatedVictimScore = attacker.CurrentServer.GameName != Server.Game.CSGO ? victim.Score : victimStats.SessionKills * 50;