From 19e6b77f4daa0b774893ab7a0fa5f422a5bafa12 Mon Sep 17 00:00:00 2001 From: Hisuian Zoroark <96159984+HisuianZoroark@users.noreply.github.com> Date: Sat, 22 Jun 2024 14:31:37 -0400 Subject: [PATCH] Fix Quark Drive/Protosynthesis visual bug when losing ability --- play.pokemonshowdown.com/src/battle.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/play.pokemonshowdown.com/src/battle.ts b/play.pokemonshowdown.com/src/battle.ts index a5595832f1..904acd6d92 100644 --- a/play.pokemonshowdown.com/src/battle.ts +++ b/play.pokemonshowdown.com/src/battle.ts @@ -2702,7 +2702,7 @@ export class Battle { let fromeffect = Dex.getEffect(kwArgs.from); poke.removeVolatile(effect.id); - if (kwArgs.silent) { + if (kwArgs.silent && !(effect.id === 'protosynthesis' || effect.id === 'quarkdrive')) { // do nothing } else { switch (effect.id) {