custom min 8
This commit is contained in:
parent
b46796fd9c
commit
61f61599e5
1 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ $ogDescription = "Explore detailed player statistics over the past month includi
|
||||||
echo "Stats for $key (minimal 18 matches)";
|
echo "Stats for $key (minimal 18 matches)";
|
||||||
}
|
}
|
||||||
if ($key == 'custom') {
|
if ($key == 'custom') {
|
||||||
echo "Stats for $key (minimal 18 matches)";
|
echo "Stats for $key (minimal 8 matches)";
|
||||||
}
|
}
|
||||||
if ($key == 'Ranked') {
|
if ($key == 'Ranked') {
|
||||||
echo "Stats for $key (minimal 8 matches)";
|
echo "Stats for $key (minimal 8 matches)";
|
||||||
|
|
@ -87,7 +87,7 @@ $ogDescription = "Explore detailed player statistics over the past month includi
|
||||||
if ($key == 'official' && $player_data['matches'] < 18) {
|
if ($key == 'official' && $player_data['matches'] < 18) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if ($key == 'custom' && $player_data['matches'] < 18) {
|
if ($key == 'custom' && $player_data['matches'] < 8) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if ($key == 'Ranked' && $player_data['matches'] < 8) {
|
if ($key == 'Ranked' && $player_data['matches'] < 8) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue