Support new Pokemon in Who's that Pokemon (803-807)

This commit is contained in:
Dragon Fire
2019-12-13 20:43:17 -05:00
parent 9511c527b3
commit 306d23c68e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ module.exports = class WhosThatPokemonCommand extends Command {
}
async run(msg, { hide }) {
const pokemon = Math.floor(Math.random() * 802) + 1;
const pokemon = Math.floor(Math.random() * 807) + 1;
try {
const data = await this.client.pokemon.fetch(pokemon.toString());
const names = data.names.map(name => name.name.toLowerCase());
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "109.3.0",
"version": "109.3.1",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {