From 873b667638cfc8aac662e89c981e9a7057ef3952 Mon Sep 17 00:00:00 2001 From: Hesketh2 <88981446+Hesketh2@users.noreply.github.com> Date: Wed, 4 Dec 2024 17:37:51 +0700 Subject: [PATCH] feat(match2): increase max players on some BRs (#5164) * fix(match2): Max players on pubg/pubgm * Update match_group_input_custom.lua * freefire --------- Co-authored-by: Rikard Blixt --- components/match2/wikis/freefire/match_group_input_custom.lua | 2 +- components/match2/wikis/pubg/match_group_input_custom.lua | 2 +- components/match2/wikis/pubgmobile/match_group_input_custom.lua | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/match2/wikis/freefire/match_group_input_custom.lua b/components/match2/wikis/freefire/match_group_input_custom.lua index 823f11f404..b70addaa2a 100644 --- a/components/match2/wikis/freefire/match_group_input_custom.lua +++ b/components/match2/wikis/freefire/match_group_input_custom.lua @@ -20,7 +20,7 @@ local MatchFunctions = { OPPONENT_CONFIG = { resolveRedirect = true, applyUnderScores = true, - maxNumPlayers = 3, + maxNumPlayers = 4, }, DEFAULT_MODE = 'team' } diff --git a/components/match2/wikis/pubg/match_group_input_custom.lua b/components/match2/wikis/pubg/match_group_input_custom.lua index f8605b912a..c8ce07c29a 100644 --- a/components/match2/wikis/pubg/match_group_input_custom.lua +++ b/components/match2/wikis/pubg/match_group_input_custom.lua @@ -20,7 +20,7 @@ local MatchFunctions = { OPPONENT_CONFIG = { resolveRedirect = true, applyUnderScores = true, - maxNumPlayers = 3, + maxNumPlayers = 4, }, DEFAULT_MODE = 'team' } diff --git a/components/match2/wikis/pubgmobile/match_group_input_custom.lua b/components/match2/wikis/pubgmobile/match_group_input_custom.lua index b20be9549d..b291f1e3a1 100644 --- a/components/match2/wikis/pubgmobile/match_group_input_custom.lua +++ b/components/match2/wikis/pubgmobile/match_group_input_custom.lua @@ -20,7 +20,7 @@ local MatchFunctions = { OPPONENT_CONFIG = { resolveRedirect = true, applyUnderScores = true, - maxNumPlayers = 3, + maxNumPlayers = 4, }, DEFAULT_MODE = 'team' }