From 9cd29598037fd0a0b0ac84ebd5be4d64b3c3423d Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 10 Dec 2020 17:01:05 -0500 Subject: [PATCH] Fix --- structures/pokemon/Pokemon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structures/pokemon/Pokemon.js b/structures/pokemon/Pokemon.js index bc330274..5fb13ea4 100644 --- a/structures/pokemon/Pokemon.js +++ b/structures/pokemon/Pokemon.js @@ -66,7 +66,7 @@ module.exports = class Pokemon { } get pseudo() { - if (!this.stats) return null; + if (!this.gameDataCached) return null; if (this.legendary || this.mythical || this.baby || this.missingno) return false; if (this.baseStatTotal !== 600) return false; if (this.chain.data.length !== 3) return false;