From 61f61599e599f2a1a2046b1112ed9f47dd008a17 Mon Sep 17 00:00:00 2001 From: Lanta Date: Mon, 17 Feb 2025 14:58:16 +0100 Subject: [PATCH] custom min 8 --- last_stats.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/last_stats.php b/last_stats.php index 59a787b..b0d3865 100644 --- a/last_stats.php +++ b/last_stats.php @@ -46,7 +46,7 @@ $ogDescription = "Explore detailed player statistics over the past month includi echo "Stats for $key (minimal 18 matches)"; } if ($key == 'custom') { - echo "Stats for $key (minimal 18 matches)"; + echo "Stats for $key (minimal 8 matches)"; } if ($key == 'Ranked') { 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) { continue; } - if ($key == 'custom' && $player_data['matches'] < 18) { + if ($key == 'custom' && $player_data['matches'] < 8) { continue; } if ($key == 'Ranked' && $player_data['matches'] < 8) { -- 2.49.1