clan4 casual

This commit is contained in:
Lanta 2024-07-18 11:16:43 +02:00
parent 16297a8525
commit 1ed4515cfa
2 changed files with 40 additions and 21 deletions

View file

@ -33,6 +33,9 @@ $ogDescription = "Explore detailed player statistics over the past month includi
// if ($key == 'all') {
// echo "Stats for $key (minimal 20 matches)";
// }
if ($key == 'clan_4_casual') {
echo "Stats for $key (minimal 4 matches)";
}
if ($key == 'Intense') {
echo "Stats for $key (minimal 8 matches)";
}
@ -71,6 +74,9 @@ $ogDescription = "Explore detailed player statistics over the past month includi
if ($key == 'all' && $player_data['matches'] < 20) {
continue;
}
if ($key == 'clan_4_casual' && $player_data['matches'] < 4) {
continue;
}
if ($key == 'Intense' && $player_data['matches'] < 8) {
continue;
}