This commit is contained in:
Dragon Fire
2020-12-25 19:29:19 -05:00
parent a607e0fa86
commit 1c181402f3
+1 -1
View File
@@ -85,7 +85,7 @@ module.exports = class Pokemon {
get mega() {
if (!this.gameDataCached) return null;
return this.varieties.filter(variety => variety.mega);
return this.varieties.some(variety => variety.mega);
}
get displayID() {