Skip to content

Commit

Permalink
Adjust Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
xsn34kzx committed Jul 7, 2024
1 parent e66ffb7 commit de7244f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/field/pokemon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
* on the species it was met at or by the first {@linkcode Pokemon} in its evolution
* line that can act as a starter and provides those egg moves.
* @returns an array of {@linkcode Moves}, the length of which is determined by how many
* egg moves are unlocked for that species
* egg moves are unlocked for that species.
*/
getUnlockedEggMoves(): Moves[] {
const moves: Moves[] = [];
Expand All @@ -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]);
Expand Down

0 comments on commit de7244f

Please sign in to comment.