diff --git a/components/infobox/wikis/marvelrivals/infobox_character_custom.lua b/components/infobox/wikis/marvelrivals/infobox_character_custom.lua index 97f6ae893d..d2cbd60913 100644 --- a/components/infobox/wikis/marvelrivals/infobox_character_custom.lua +++ b/components/infobox/wikis/marvelrivals/infobox_character_custom.lua @@ -40,17 +40,11 @@ function CustomInjector:parse(id, widgets) if id == 'custom' then Array.appendWith( widgets, - Cell{name = 'Age', content = {args.age}}, - Cell{name = 'Affiliation', content = {args.affiliation}}, - Cell{name = 'Voice Actor(s)', content = {args.voiceactor}} - ) - - Array.appendWith( - widgets, - Title{children = 'Gameplay Information'}, Cell{name = 'Health', content = {args.health}}, Cell{name = 'Movespeed', content = {args.movespeed}}, - Cell{name = 'Difficulty', content = {args.difficulty}} + Cell{name = 'Difficulty', content = {args.difficulty}}, + Cell{name = 'Affiliation', content = {args.affiliation}}, + Cell{name = 'Voice Actor(s)', content = {args.voiceactor}} ) return widgets end