From 35b43a7ed2ae5bbd165a967f1216ab5afc5a281a Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Wed, 21 May 2025 15:31:20 -0500 Subject: [PATCH] Fix missing tsdoc param --- src/data/abilities/ability.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/data/abilities/ability.ts b/src/data/abilities/ability.ts index 7353f84966e..dd3ab48a8a5 100644 --- a/src/data/abilities/ability.ts +++ b/src/data/abilities/ability.ts @@ -3991,6 +3991,7 @@ export class PostSummonFormChangeByWeatherAbAttr extends PostSummonAbAttr { * * @param pokemon - The Pokemon with this ability * @param _passive - unused + * @param simulated - unused * @param _args - unused */ override applyPostSummon(pokemon: Pokemon, _passive: boolean, simulated: boolean, _args: any[]): void { @@ -5305,10 +5306,11 @@ export class PostWeatherChangeFormChangeAbAttr extends PostWeatherChangeAbAttr { /** * Calls {@linkcode Arena.triggerWeatherBasedFormChangesToNormal | triggerWeatherBasedFormChangesToNormal} when the * weather changed to form-reverting weather, otherwise calls {@linkcode Arena.triggerWeatherBasedFormChanges | triggerWeatherBasedFormChanges} - * @param {Pokemon} _pokemon the Pokemon with this ability - * @param _passive n/a - * @param _weather n/a - * @param _args n/a + * @param _pokemon - The Pokemon with this ability + * @param _passive - unused + * @param simulated - unused + * @param _weather - unused + * @param _args - unused */ override applyPostWeatherChange( _pokemon: Pokemon,