This commit is contained in:
Lanta 2023-09-25 15:21:21 +02:00
parent 7f07c2bab2
commit 663d4c6d4a
2 changed files with 3 additions and 3 deletions

View file

@ -67,7 +67,7 @@ foreach ($player in $all_player_matches.playername) {
deaths = $deaths
kills = $kills
humankills = $humankills
matches = ($killstats | where-object { $_.playername -eq $player }).count
matches = ($all_player_matches | where-object {$_.playername -eq $player}).player_matches.count
KD_H = $humankills / $deaths
KD_ALL = $kills / $deaths