From 306d23c68e754fda1034350c8de9b17fcba8cf41 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 13 Dec 2019 20:43:17 -0500 Subject: [PATCH] Support new Pokemon in Who's that Pokemon (803-807) --- commands/sp-games/whos-that-pokemon.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/sp-games/whos-that-pokemon.js b/commands/sp-games/whos-that-pokemon.js index bf987579..2c2b4ed7 100644 --- a/commands/sp-games/whos-that-pokemon.js +++ b/commands/sp-games/whos-that-pokemon.js @@ -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()); diff --git a/package.json b/package.json index 8df52046..31b292ad 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "109.3.0", + "version": "109.3.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {