From 07e66871f8390bb688401d707f09c0b25e4be9ce Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 18 Jan 2021 17:55:06 -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 2dc9af28..c6b2c40d 100644 --- a/commands/pokedex/pokedex-stats.js +++ b/commands/pokedex/pokedex-stats.js @@ -71,7 +71,7 @@ module.exports = class PokedexCommand extends Command { sAtk: Math.round((variety.stats.sAtk / 255) * 10) * 2, sDef: Math.round((variety.stats.sDef / 255) * 10) * 2, spd: Math.round((variety.stats.spd / 255) * 10) * 2, - total: Math.round((statTotal / 720) * 10) * 2 + total: Math.round((statTotal / 1125) * 10) * 2 }; const displayForms = data.varieties.filter(vrity => vrity.statsDiffer); const embed = new MessageEmbed()