From 82dfd86730de3413df4a28f475980e11a5095349 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 3 Dec 2020 10:58:10 -0500 Subject: [PATCH] Better display max stats --- commands/search/pokedex.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/pokedex.js b/commands/search/pokedex.js index 3a970dd2..946a46ca 100644 --- a/commands/search/pokedex.js +++ b/commands/search/pokedex.js @@ -70,7 +70,7 @@ module.exports = class PokedexCommand extends Command { sAtk: Math.round((data.stats.sAtk / 255) * 10) * 2, sDef: Math.round((data.stats.sDef / 255) * 10) * 2, spd: Math.round((data.stats.spd / 255) * 10) * 2, - total: Math.round((data.baseStatTotal / 1530) * 10) * 2 + total: Math.round((data.baseStatTotal / 720) * 10) * 2 }; const embed = new MessageEmbed() .setColor(0xED1C24)