Fix ChillyReceptionAttr

This commit is contained in:
innerthunder 2024-09-22 22:39:45 -07:00
parent d840720aa5
commit 622da78955

View File

@ -5362,7 +5362,7 @@ export class ChillyReceptionAttr extends ForceSwitchOutAttr {
// using inherited constructor
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): Promise<boolean> {
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean {
user.scene.arena.trySetWeather(WeatherType.SNOW, true);
return super.apply(user, target, move, args);
}