mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-17 22:02:18 +02:00
[Bug] Fusion Pokémon now inherit "Pause Evolutions" from both Pokémon
This commit is contained in:
parent
93ff0e6e9d
commit
2317c6f003
@ -3843,6 +3843,9 @@ export class PlayerPokemon extends Pokemon {
|
|||||||
this.fusionVariant = pokemon.variant;
|
this.fusionVariant = pokemon.variant;
|
||||||
this.fusionGender = pokemon.gender;
|
this.fusionGender = pokemon.gender;
|
||||||
this.fusionLuck = pokemon.luck;
|
this.fusionLuck = pokemon.luck;
|
||||||
|
if ((pokemon.pauseEvolutions) || (this.pauseEvolutions)) {
|
||||||
|
this.pauseEvolutions = true;
|
||||||
|
}
|
||||||
|
|
||||||
this.scene.validateAchv(achvs.SPLICE);
|
this.scene.validateAchv(achvs.SPLICE);
|
||||||
this.scene.gameData.gameStats.pokemonFused++;
|
this.scene.gameData.gameStats.pokemonFused++;
|
||||||
|
Loading…
Reference in New Issue
Block a user