From d1f7231b00e71de6d644405c46a8bcabe8caa400 Mon Sep 17 00:00:00 2001 From: td76099 Date: Fri, 10 May 2024 12:14:01 -0400 Subject: [PATCH] Fixes Tidy Up so it clears hazards from both sides --- 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 6e4e3f60fcb..27dffca0d69 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -6709,8 +6709,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),