From a0d56d6958cb3dc5418bc91cc928535ee1206b0c Mon Sep 17 00:00:00 2001 From: Mumble <171087428+frutescens@users.noreply.github.com> Date: Wed, 6 Nov 2024 21:35:22 -0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/data/battler-tags.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index 1ec076f187f..5726a5d53f3 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -975,8 +975,6 @@ export class EncoreTag extends MoveRestrictionBattlerTag { /** * If the encored move has run out of PP, Encore ends early. Otherwise, Encore lapses based on the AFTER_MOVE battler tag lapse type. - * @param pokemon - * @param lapseType * @returns `true` to persist | `false` to end and be removed */ override lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean { @@ -994,7 +992,7 @@ export class EncoreTag extends MoveRestrictionBattlerTag { /** * Checks if the move matches the moveId stored within the tag and returns a boolean value * @param move {@linkcode Moves} the move selected - * @param user {@linkcode Pokemon} + * @param user N/A * @returns `true` if the move does not match with the moveId stored and as a result, restricted */ override isMoveRestricted(move: Moves, _user?: Pokemon): boolean {