From b36716f9868e5eab27f6f5afccce74a005d07e3c Mon Sep 17 00:00:00 2001 From: Hesketh2 <88981446+Hesketh2@users.noreply.github.com> Date: Tue, 10 Dec 2024 18:51:19 +0700 Subject: [PATCH] Rearrange order stats will now be after the first 3 which is from commons, Affiliation/Age/Voice Actor will be below the stats Merged all into one section as well no extra headers --- .../wikis/marvelrivals/infobox_character_custom.lua | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/components/infobox/wikis/marvelrivals/infobox_character_custom.lua b/components/infobox/wikis/marvelrivals/infobox_character_custom.lua index 97f6ae893dc..d2cbd60913a 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