diff --git a/matchinfo.php b/matchinfo.php index 1f34b9b..0c7c879 100644 --- a/matchinfo.php +++ b/matchinfo.php @@ -101,6 +101,7 @@ $lastMatches = array_slice($allMatches, 0, 8); echo " Player Name humankills + HumanDmg Kills Total Damage Rank @@ -128,6 +129,7 @@ $lastMatches = array_slice($allMatches, 0, 8); echo ""; echo "" . htmlspecialchars($individualPlayerName) . ""; echo "" . htmlspecialchars($jsonData_individual_player['stats']['humankills']) . ""; + echo "" . htmlspecialchars($jsonData_individual_player['stats']['HumanDmg']) . ""; echo "" . htmlspecialchars($jsonData_individual_player['stats']['kills']) . ""; echo "" . htmlspecialchars($damageDealt) . ""; echo "" . htmlspecialchars($rank) . ""; @@ -142,7 +144,6 @@ $lastMatches = array_slice($allMatches, 0, 8); Sort Kills Damage Dealt - Human Damage Time Survived Rank Revs @@ -159,7 +160,6 @@ $lastMatches = array_slice($allMatches, 0, 8); echo "" . htmlspecialchars($playerStats['name']) . ""; echo " Human "; echo "" . htmlspecialchars($playerStats['kills']) . ""; - echo "" . htmlspecialchars($playerStats['damageDealt']) . ""; echo "" . htmlspecialchars($playerStats['HumanDmg']) . ""; echo "" . htmlspecialchars($playerStats['timeSurvived']) . ""; echo "" . htmlspecialchars($playerStats['winPlace']) . "";