From d0f1a31e54c36e04468436060135aa0188cee200 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 20 Jan 2021 18:36:49 -0500 Subject: [PATCH] Fix --- commands/pokedex/pokedex-stats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/pokedex/pokedex-stats.js b/commands/pokedex/pokedex-stats.js index 15ab13ed..3ded1f4d 100644 --- a/commands/pokedex/pokedex-stats.js +++ b/commands/pokedex/pokedex-stats.js @@ -103,7 +103,7 @@ module.exports = class PokedexCommand extends Command { `) .addField('❯ Abilities', variety.abilities.join('/')) .addField('❯ Smogon Tiers', - games.map(game => { + fetchGames.map(game => { const smogonData = data.smogonTiers[game]; return `[${smogonData.join('/')}](${data.smogonURL(game)}) (${games[game]})`; }).join('\n'))