Skip to content

Commit

Permalink
Rearrange order
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Hesketh2 authored Dec 10, 2024
1 parent 0373302 commit b36716f
Showing 1 changed file with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b36716f

Please sign in to comment.