Fix eggs during dailies

This commit is contained in:
Xavion3 2024-05-04 00:27:20 +10:00 committed by Samuel H
parent 24a9dba2c4
commit bc319a8eda
1 changed files with 1 additions and 1 deletions

View File

@ -1060,7 +1060,7 @@ export class GameData {
this.gameStats.shinyPokemonHatched++;
}
if (!hasPrevolution && (!pokemon.scene.gameMode.isDaily || hasNewAttr))
if (!hasPrevolution && (!pokemon.scene.gameMode.isDaily || hasNewAttr || fromEgg))
this.addStarterCandy(species, (1 * (pokemon.isShiny() ? 5 * Math.pow(2, pokemon.variant || 0) : 1)) * (fromEgg || pokemon.isBoss() ? 2 : 1));
}