clan4 casual
This commit is contained in:
parent
16297a8525
commit
1ed4515cfa
2 changed files with 40 additions and 21 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue