From 84c67327c1eebdbc5197ec7e99a8cecef9be4d66 Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Wed, 10 Sep 2025 12:25:32 -0500 Subject: [PATCH] Remove `@PokemonSpecies` --- src/system/game-data.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/system/game-data.ts b/src/system/game-data.ts index 3442748c9ab..08b7261c5f9 100644 --- a/src/system/game-data.ts +++ b/src/system/game-data.ts @@ -2002,9 +2002,7 @@ export class GameData { }); } - /** - * Checks whether the root species of a given {@PokemonSpecies} has been unlocked in the dex - */ + /** Return whether the root species of a given `PokemonSpecies` has been unlocked in the dex */ isRootSpeciesUnlocked(species: PokemonSpecies): boolean { return !!this.dexData[species.getRootSpeciesId()]?.caughtAttr; }