Added a ton of TAs, fixed sitemap, made sorting more intelligent

This commit is contained in:
Firq 2024-01-05 20:03:23 +01:00
parent e24c21c100
commit 8f989176c7
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20
28 changed files with 445 additions and 7 deletions
src/pages/database

View file

@ -21,7 +21,7 @@ for (const [key, value] of Object.entries(fulldata)) {
}
questInfo.sort(
(a, b) => Date.parse(b.questReleaseDate) - Date.parse(a.questReleaseDate)
(a, b) => Date.parse(b.questReleaseDate) - Date.parse(a.questReleaseDate) || b.fightNumber - a.fightNumber
)
---