Missingno should be "???"

This commit is contained in:
Dragon Fire
2020-03-25 21:25:44 -04:00
parent 29ef7b8fea
commit da62e2d8db
+1
View File
@@ -30,6 +30,7 @@ module.exports = class Pokemon {
}
get displayID() {
if (this.missingno) return '???';
return this.id.toString().padStart(3, '0');
}