From 210e2662b95b90f4036e9ef03afe8e006aec6f90 Mon Sep 17 00:00:00 2001 From: xsn34kzx Date: Sat, 6 Jul 2024 23:35:07 -0400 Subject: [PATCH] Adjusted Documentation --- src/field/pokemon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 86a70b102718..e8ab94f179d4 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -879,7 +879,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { * Available egg moves are only included if the {@linkcode Pokemon} was * in the starting party of the run. * @returns an array of {@linkcode Moves}, the length of which is determined - * by how many learnable moves + * by how many learnable moves there are for the {@linkcode Pokemon}. */ getLearnableLevelMoves(): Moves[] { let levelMoves = this.getLevelMoves(1, true).map(lm => lm[1]);