[P3 Bug] Remove Expert Breeder trainer type from ME egg source (#5893)

Remove Expert Breeder trainer type from ME eggs

It effectively duplicated the text in the egg source text box,
and overflowed the visual text box as a result.
This commit is contained in:
Madmadness65 2025-06-02 09:32:34 -05:00 committed by GitHub
parent 9f892b906c
commit ea64024e09
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -581,7 +581,7 @@ function calculateEggRewardsForPokemon(pokemon: PlayerPokemon): [number, number]
} }
function getEggOptions(commonEggs: number, rareEggs: number) { function getEggOptions(commonEggs: number, rareEggs: number) {
const eggDescription = i18next.t(`${namespace}:title`) + ":\n" + i18next.t(trainerNameKey); const eggDescription = i18next.t(`${namespace}:title`);
const eggOptions: IEggOptions[] = []; const eggOptions: IEggOptions[] = [];
if (commonEggs > 0) { if (commonEggs > 0) {