From c186d53f3e087d7a4e22152fd15783c49c0d928b Mon Sep 17 00:00:00 2001 From: Leo Kim <47556641+KimJeongSun@users.noreply.github.com> Date: Wed, 7 Aug 2024 23:24:45 +0900 Subject: [PATCH] [QoL] Update `Normal` -> `Not Shiny`. Remove no pokerus option (#3402) --- src/locales/en/filter-bar.ts | 2 +- src/ui/starter-select-ui-handler.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/locales/en/filter-bar.ts b/src/locales/en/filter-bar.ts index 7a3174957ea..0961df9f058 100644 --- a/src/locales/en/filter-bar.ts +++ b/src/locales/en/filter-bar.ts @@ -8,7 +8,7 @@ export const filterBar: SimpleTranslationEntries = { "miscFilter": "Misc", "sortFilter": "Sort", "all": "All", - "normal": "Normal", + "normal": "Not Shiny", "uncaught": "Uncaught", "passive": "Passive", "passiveUnlocked": "Passive Unlocked", diff --git a/src/ui/starter-select-ui-handler.ts b/src/ui/starter-select-ui-handler.ts index c1f7639ca99..028786c85f0 100644 --- a/src/ui/starter-select-ui-handler.ts +++ b/src/ui/starter-select-ui-handler.ts @@ -467,7 +467,6 @@ export default class StarterSelectUiHandler extends MessageUiHandler { const pokerusLabels = [ new DropDownLabel(i18next.t("filterBar:pokerus"), undefined, DropDownState.OFF), new DropDownLabel(i18next.t("filterBar:hasPokerus"), undefined, DropDownState.ON), - new DropDownLabel(i18next.t("filterBar:noPokerus"), undefined, DropDownState.EXCLUDE), ]; const miscOptions = [ new DropDownOption(this.scene, "WIN", winLabels),