This commit is contained in:
Dragon Fire
2020-06-07 18:29:11 -04:00
parent 9841a4db16
commit 8838a04244
5 changed files with 15 additions and 11 deletions
@@ -25,6 +25,6 @@ module.exports = class CommandLeaderboardExportCommand extends Command {
async run(msg) {
const result = this.client.exportCommandLeaderboard();
await msg.direct({ files: [{ attachment: result, name: 'command-leaderboard.json' }] });
return msg.say('📬 Sent \`command-leaderboard.json\` to your DMs!');
return msg.say('📬 Sent `command-leaderboard.json` to your DMs!');
}
};