Skip to content

Commit

Permalink
feat: Show current team and score in the stats (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDave1999 authored Oct 2, 2024
1 parent def2f42 commit 6deef4d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Application/Players/Accounts/Systems/PlayerStatsSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 6deef4d

Please sign in to comment.