mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Fix
This commit is contained in:
@@ -86,8 +86,8 @@ module.exports = class Pokemon {
|
||||
if (this.id >= 387) return 4;
|
||||
if (this.id >= 252) return 3;
|
||||
if (this.id >= 152) return 2;
|
||||
if (this.id >= 1) return 1;
|
||||
return 0;
|
||||
if (this.id >= 0) return 1;
|
||||
return null;
|
||||
}
|
||||
|
||||
get class() {
|
||||
|
||||
Reference in New Issue
Block a user