[Misc] Remove unneeded switch case in biome name (#3202)

`Biome.ABYSS` has the same (English) name as its enum
This commit is contained in:
NightKev 2024-07-29 13:45:16 -07:00 committed by GitHub
parent bee2823e6b
commit 124ad5f970
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 2 deletions

View File

@ -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: