More nit fixes

This commit is contained in:
innerthunder 2024-09-23 23:43:38 -07:00
parent 9d2ece81ef
commit 039f980a71
2 changed files with 1 additions and 4 deletions

View File

@ -5303,9 +5303,6 @@ export class ForceSwitchOutAttr extends MoveEffectAttr {
export class ChillyReceptionAttr extends ForceSwitchOutAttr {
// using inherited constructor
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean {
user.scene.arena.trySetWeather(WeatherType.SNOW, true);
return super.apply(user, target, move, args);

View File

@ -18,7 +18,7 @@ export class SwitchPhase extends BattlePhase {
/**
* Creates a new SwitchPhase
* @param scene {@linkcode BattleScene} Current battle scene
* @param switchType The type of switch logic this phase implements
* @param switchType {@linkcode SwitchType} The type of switch logic this phase implements
* @param fieldIndex Field index to switch out
* @param isModal Indicates if the switch should be forced (true) or is
* optional (false).