diff --git a/src/data/move.ts b/src/data/move.ts index 6c8ff26f8fb..4d0b53ec29f 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -2217,9 +2217,7 @@ export class WeatherChangeAttr extends MoveEffectAttr { } getCondition(): MoveConditionFunc { - // adding clause CHILLY_RECEPTION, so move doesn't fail when it's already snowing: since the move still allows a switch out return (user, target, move) => !user.scene.arena.weather || (user.scene.arena.weather.weatherType !== this.weatherType && !user.scene.arena.weather.isImmutable()); - } } @@ -4747,7 +4745,6 @@ export class ForceSwitchOutAttr extends MoveEffectAttr { getCondition(): MoveConditionFunc { return (user, target, move) => (move.category !== MoveCategory.STATUS || this.getSwitchOutCondition()(user, target, move)); - } getFailedText(user: Pokemon, target: Pokemon, move: Move, cancelled: Utils.BooleanHolder): string | null {