From c34134159df437997df5801d06830ebce49d4d47 Mon Sep 17 00:00:00 2001 From: Bertie690 Date: Sun, 3 Aug 2025 12:58:49 -0400 Subject: [PATCH] ran biome --- src/data/arena-tag.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/arena-tag.ts b/src/data/arena-tag.ts index ceb365eb74c..0802917dc25 100644 --- a/src/data/arena-tag.ts +++ b/src/data/arena-tag.ts @@ -902,7 +902,7 @@ class ToxicSpikesTag extends ArenaTrapTag { // Neutralize the tag and remove it from the field. // Message cannot be moved to `onRemove` as that requires a reference to the neutralizing pokemon this.#neutralized = true; - globalScene.arena.removeTagOnSide(this.tagType, this.side) + globalScene.arena.removeTagOnSide(this.tagType, this.side); globalScene.phaseManager.queueMessage( i18next.t("arenaTag:toxicSpikesActivateTrapPoison", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), @@ -914,7 +914,7 @@ class ToxicSpikesTag extends ArenaTrapTag { // Attempt to poison the target, suppressing any immunity messages that arise. const effect = this.layers === 1 ? StatusEffect.POISON : StatusEffect.TOXIC; - return pokemon.trySetStatus(effect, null, undefined, this.getMoveName(), false, true) + return pokemon.trySetStatus(effect, null, undefined, this.getMoveName(), false, true); } getMatchupScoreMultiplier(pokemon: Pokemon): number {