From c6644cb64a300a616fb9ee8df2c49a5c74b2bf83 Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Tue, 20 May 2025 22:17:41 -0500 Subject: [PATCH] Update src/utils/common.ts Co-authored-by: Wlowscha <54003515+Wlowscha@users.noreply.github.com> --- src/utils/common.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/common.ts b/src/utils/common.ts index 6a22be9e052..a018b49da3c 100644 --- a/src/utils/common.ts +++ b/src/utils/common.ts @@ -587,8 +587,8 @@ export function getShinyDescriptor(variant: Variant): string { case 2: return i18next.t("common:epicShiny"); case 1: - return i18next.t("common:shiny"); + return i18next.t("common:rareShiny"); case 0: - return i18next.t("common:normal"); + return i18next.t("common:commonShiny"); } }