From 8258bcf3ea2cb7e2acfa4b0e350e44afecced2f9 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Wed, 27 Aug 2025 10:20:30 +0200 Subject: [PATCH] fix: incorrect ordering of relicQualitySuffixes --- 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 => {