This commit is contained in:
Thijs Stobbelaar 2023-09-25 15:21:21 +02:00
parent 8ead90d93b
commit 367f2b319f
2 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@
"deaths": 0.0,
"kills": 6.0,
"humankills": 2.0,
"matches": 4,
"matches": 1,
"KD_H": "Infinity",
"KD_ALL": "Infinity"
},
@ -72,6 +72,6 @@
"KD_ALL": 1.3333333333333333
},
{
"updated": "09/25/2023 14:31:54 - Time Zone: W. Europe Standard Time"
"updated": "09/25/2023 15:19:43 - Time Zone: W. Europe Standard Time"
}
]

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