From 6deef4d9dbbca3d8b0d164c1c4e35cf74bfedb99 Mon Sep 17 00:00:00 2001 From: Dave Roman <43916038+MrDave1999@users.noreply.github.com> Date: Wed, 2 Oct 2024 09:27:26 -0500 Subject: [PATCH] feat: Show current team and score in the stats (#120) --- src/Application/Players/Accounts/Systems/PlayerStatsSystem.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Application/Players/Accounts/Systems/PlayerStatsSystem.cs b/src/Application/Players/Accounts/Systems/PlayerStatsSystem.cs index 9e7d89a0..cd5fd365 100644 --- a/src/Application/Players/Accounts/Systems/PlayerStatsSystem.cs +++ b/src/Application/Players/Accounts/Systems/PlayerStatsSystem.cs @@ -31,6 +31,8 @@ public void ShowStats(Player player) PlayerInfo playerInfo = player.GetInfo(); var content = $""" + Current Team: {playerInfo.Team.Name} + Score for Round: {player.Score} Kills for Round: {playerInfo.StatsPerRound.Kills} Deaths for Round: {playerInfo.StatsPerRound.Deaths} Killing Spree for Round: {playerInfo.StatsPerRound.KillingSpree}