From 9825f5e88698eb8aedd88e632bd406f5b0c32638 Mon Sep 17 00:00:00 2001 From: HiZo <96159984+HisuianZoroark@users.noreply.github.com> Date: Mon, 30 Sep 2024 10:29:10 -0400 Subject: [PATCH] Fix Quark Drive/Protosynthesis visual bug when losing ability (#2253) --- 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 60b955ae6d..4a9b73e9af 100644 --- a/play.pokemonshowdown.com/src/battle.ts +++ b/play.pokemonshowdown.com/src/battle.ts @@ -2700,7 +2700,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) {