diff --git a/structures/pokemon/Pokemon.js b/structures/pokemon/Pokemon.js index ff2dfe54..bc330274 100644 --- a/structures/pokemon/Pokemon.js +++ b/structures/pokemon/Pokemon.js @@ -69,7 +69,7 @@ module.exports = class Pokemon { if (!this.stats) return null; if (this.legendary || this.mythical || this.baby || this.missingno) return false; if (this.baseStatTotal !== 600) return false; - if (this.chain.length !== 3) return false; + if (this.chain.data.length !== 3) return false; return true; }