diff --git a/structures/pokemon/Pokemon.js b/structures/pokemon/Pokemon.js index f95dfaf1..3fbad17f 100644 --- a/structures/pokemon/Pokemon.js +++ b/structures/pokemon/Pokemon.js @@ -78,7 +78,7 @@ module.exports = class Pokemon { } get generation() { - if (this.id < 898) return null; + if (this.id > 898) return null; if (this.id >= 810) return 8; if (this.id >= 722) return 7; if (this.id >= 650) return 6;