From 5a3c686bbb6ed104e9d969294c0f9d4185e6b7f3 Mon Sep 17 00:00:00 2001 From: Amatsune <48121978+amatsune@users.noreply.github.com> Date: Mon, 24 Jun 2024 14:30:01 +0200 Subject: [PATCH] Update src/data/pokemon-species.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> (cherry picked from commit 77f48e6e87f56961654b5754247288cc4fa9ae3f) --- src/data/pokemon-species.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/pokemon-species.ts b/src/data/pokemon-species.ts index 8c631e920d3..8cacbc1da51 100644 --- a/src/data/pokemon-species.ts +++ b/src/data/pokemon-species.ts @@ -50,7 +50,7 @@ export function getPokemonSpeciesForm(species: Species, formIndex: integer): Pok return retSpecies; } -export function getFusedSpeciesName(speciesAName: string, speciesBName: string): string { +export function getFusedSpeciesName(speciesA: PokemonSpecies, speciesB: PokemonSpecies): string { //I WAS HERE, DON'T KNOW HOW TO MAKE THIS WORK // Basically the only thing missing is now to get the non local species name in lowercase return i18next.t(fusionAffixes:${speciesA}.fusionPrefix)+i18next.t(fusionAffixes:${speciesB}.fusionSuffix)