mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-01 07:29:38 +01:00
[Misc] Remove unneeded switch case in biome name (#3202)
`Biome.ABYSS` has the same (English) name as its enum
This commit is contained in:
parent
bee2823e6b
commit
124ad5f970
@ -17,8 +17,6 @@ export function getBiomeName(biome: Biome | -1) {
|
|||||||
return i18next.t("biome:GRASS");
|
return i18next.t("biome:GRASS");
|
||||||
case Biome.RUINS:
|
case Biome.RUINS:
|
||||||
return i18next.t("biome:RUINS");
|
return i18next.t("biome:RUINS");
|
||||||
case Biome.ABYSS:
|
|
||||||
return i18next.t("biome:ABYSS");
|
|
||||||
case Biome.END:
|
case Biome.END:
|
||||||
return i18next.t("biome:END");
|
return i18next.t("biome:END");
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user