From 2317c6f003a1d3dfc23afc6989372f8c58ef10c5 Mon Sep 17 00:00:00 2001 From: Sean Mon Date: Tue, 3 Sep 2024 23:57:45 +0100 Subject: [PATCH] =?UTF-8?q?[Bug]=20Fusion=20Pok=C3=A9mon=20now=20inherit?= =?UTF-8?q?=20"Pause=20Evolutions"=20from=20both=20Pok=C3=A9mon?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/field/pokemon.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 405a26d4a16..8690e81d7d8 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -3843,6 +3843,9 @@ export class PlayerPokemon extends Pokemon { this.fusionVariant = pokemon.variant; this.fusionGender = pokemon.gender; this.fusionLuck = pokemon.luck; + if ((pokemon.pauseEvolutions) || (this.pauseEvolutions)) { + this.pauseEvolutions = true; + } this.scene.validateAchv(achvs.SPLICE); this.scene.gameData.gameStats.pokemonFused++;