From 0d791ad145b692358cf9b90d36f5e8c59145c6f2 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Wed, 27 Aug 2025 13:06:28 -0700 Subject: [PATCH] fix: incorrect ordering of relicQualitySuffixes (#2708) Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2708 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com> --- src/controllers/custom/getItemListsController.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/controllers/custom/getItemListsController.ts b/src/controllers/custom/getItemListsController.ts index 5c96dfbb..dc2d6c4f 100644 --- a/src/controllers/custom/getItemListsController.ts +++ b/src/controllers/custom/getItemListsController.ts @@ -64,9 +64,9 @@ interface ItemLists { const relicQualitySuffixes: Record = { VPQ_BRONZE: "", - VPQ_SILVER: " [Flawless]", - VPQ_GOLD: " [Radiant]", - VPQ_PLATINUM: " [Exceptional]" + VPQ_SILVER: " [Exceptional]", + VPQ_GOLD: " [Flawless]", + VPQ_PLATINUM: " [Radiant]" }; /*const toTitleCase = (str: string): string => {