From acb61d6fb7127c7ae1f6a8bae9555a5d3fdd5858 Mon Sep 17 00:00:00 2001 From: td76099 <85713900+td76099@users.noreply.github.com> Date: Fri, 10 May 2024 12:31:27 -0400 Subject: [PATCH] Fixes Tidy Up so it clears hazards from both sides (#717) --- src/data/move.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/data/move.ts b/src/data/move.ts index 6ac3af708..978f51091 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -6715,8 +6715,9 @@ export function initMoves() { .attr(ForceSwitchOutAttr, true, false) .target(MoveTarget.BOTH_SIDES), new SelfStatusMove(Moves.TIDY_UP, Type.NORMAL, -1, 10, 100, 0, 9) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPD ], 1, true) - .attr(RemoveArenaTrapAttr), + .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPD ], 1, true, null, true, true) + .attr(RemoveArenaTrapAttr) + .target(MoveTarget.BOTH_SIDES), new StatusMove(Moves.SNOWSCAPE, Type.ICE, -1, 10, -1, 0, 9) .attr(WeatherChangeAttr, WeatherType.SNOW) .target(MoveTarget.BOTH_SIDES),