From c3682f5c282ba3fca243241f5c63cba163c8ba66 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 30 Jan 2021 10:26:56 -0500 Subject: [PATCH] Remove obnoxious footer from pokedex --- commands/pokedex/pokedex.js | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/commands/pokedex/pokedex.js b/commands/pokedex/pokedex.js index c25f0d23..e9b25996 100644 --- a/commands/pokedex/pokedex.js +++ b/commands/pokedex/pokedex.js @@ -114,25 +114,9 @@ module.exports = class PokedexCommand extends Command { data.genderRate.genderless ? 'Genderless' : `♂️ ${data.genderRate.male}% ♀️ ${data.genderRate.female}%`); if (data.cry) { const connection = msg.guild ? this.client.voice.connections.get(msg.guild.id) : null; - const moveUsage = this.client.registry.commands.get('pokedex-moveset').usage(); - const statsUsage = this.client.registry.commands.get('pokedex-stats').usage(); - const locationUsage = this.client.registry.commands.get('pokedex-location').usage(); if (connection) { - embed.setFooter(stripIndents` - Use ${statsUsage} to get their stats. - Use ${moveUsage} to get their moveset. - Use ${locationUsage} to get their locations. - `); connection.play(data.cry); await reactIfAble(msg, this.client.user, '🔉'); - } else { - const usage = this.client.registry.commands.get('join').usage(); - embed.setFooter(stripIndents` - Use ${statsUsage} to get their stats. - Use ${moveUsage} to get their moveset. - Use ${locationUsage} to get their locations. - Join a voice channel and use ${usage} to hear their cry. - `); } } return msg.embed(embed);