This commit is contained in:
Lanta 2025-02-17 14:53:06 +01:00
parent 965a11df3d
commit b46796fd9c

View file

@ -31,25 +31,25 @@ $ogDescription = "Explore detailed player statistics over the past month includi
echo "<br>"; echo "<br>";
// if ($key == 'all') { // if ($key == 'all') {
// echo "Stats for $key (minimal 20 matches)"; // echo "Stats for $key (minimal 25 matches)";
// } // }
if ($key == 'clan_casual') { if ($key == 'clan_casual') {
echo "Stats for $key (minimal 4 matches) - Clan casual min 2 clan players per match"; echo "Stats for $key (minimal 18 matches) - Clan casual min 2 clan players per match";
} }
if ($key == 'Intense') { if ($key == 'Intense') {
echo "Stats for $key (minimal 8 matches)"; echo "Stats for $key (minimal 18 matches)";
} }
if ($key == 'Casual') { if ($key == 'Casual') {
echo "Stats for $key (minimal 8 matches)"; echo "Stats for $key (minimal 18 matches)";
} }
if ($key == 'official') { if ($key == 'official') {
echo "Stats for $key (minimal 8 matches)"; echo "Stats for $key (minimal 18 matches)";
} }
if ($key == 'custom') { if ($key == 'custom') {
echo "Stats for $key (minimal 8 matches)"; echo "Stats for $key (minimal 18 matches)";
} }
if ($key == 'Ranked') { if ($key == 'Ranked') {
echo "Stats for $key (minimal 5 matches)"; echo "Stats for $key (minimal 8 matches)";
} }
echo "<table border='1' class='sortable'>"; echo "<table border='1' class='sortable'>";
echo "<tr> echo "<tr>
@ -72,25 +72,25 @@ $ogDescription = "Explore detailed player statistics over the past month includi
continue; // Skip this iteration and move to the next continue; // Skip this iteration and move to the next
} }
if ($key == 'all' && $player_data['matches'] < 20) { if ($key == 'all' && $player_data['matches'] < 25) {
continue; continue;
} }
if ($key == 'clan_casual' && $player_data['matches'] < 4) { if ($key == 'clan_casual' && $player_data['matches'] < 18) {
continue; continue;
} }
if ($key == 'Intense' && $player_data['matches'] < 8) { if ($key == 'Intense' && $player_data['matches'] < 18) {
continue; continue;
} }
if ($key == 'Casual' && $player_data['matches'] < 8) { if ($key == 'Casual' && $player_data['matches'] < 18) {
continue; continue;
} }
if ($key == 'official' && $player_data['matches'] < 8) { if ($key == 'official' && $player_data['matches'] < 18) {
continue; continue;
} }
if ($key == 'custom' && $player_data['matches'] < 8) { if ($key == 'custom' && $player_data['matches'] < 18) {
continue; continue;
} }
if ($key == 'Ranked' && $player_data['matches'] < 5) { if ($key == 'Ranked' && $player_data['matches'] < 8) {
continue; continue;
} }