diff --git a/components/infobox/wikis/rocketleague/infobox_league_custom.lua b/components/infobox/wikis/rocketleague/infobox_league_custom.lua index 2c360f772a2..f1a7c3e0074 100644 --- a/components/infobox/wikis/rocketleague/infobox_league_custom.lua +++ b/components/infobox/wikis/rocketleague/infobox_league_custom.lua @@ -81,6 +81,12 @@ function CustomInjector:parse(id, widgets) name = 'Number of teams', content = {args.team_number} }) + elseif not String.isEmpty(args.player_number) then + table.insert(widgets, Title{children = 'Players'}) + table.insert(widgets, Cell{ + name = 'Number of players', + content = {args.player_number} + }) end end return widgets