From 5ca8d2b011a6253bbc08b6da43d529a4d8300ee3 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 29 Sep 2017 17:37:46 +0000 Subject: [PATCH] Beep --- .../random/{apod.js => astronomy-picture-of-the-day.js} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename commands/random/{apod.js => astronomy-picture-of-the-day.js} (77%) diff --git a/commands/random/apod.js b/commands/random/astronomy-picture-of-the-day.js similarity index 77% rename from commands/random/apod.js rename to commands/random/astronomy-picture-of-the-day.js index 413f3edb..f5e1e059 100644 --- a/commands/random/apod.js +++ b/commands/random/astronomy-picture-of-the-day.js @@ -3,13 +3,13 @@ const snekfetch = require('snekfetch'); const { shorten } = require('../../structures/Util'); const { GOV_KEY } = process.env; -module.exports = class APODCommand extends Command { +module.exports = class AstronomyPictureOfTheDayCommand extends Command { constructor(client) { super(client, { - name: 'apod', - aliases: ['nasa-apod', 'astronomy-picture-of-the-day', 'apod-image', 'nasa-apod-image'], + name: 'astronomy-picture-of-the-day', + aliases: ['nasa-apod', 'apod'], group: 'random', - memberName: 'apod', + memberName: 'astronomy-picture-of-the-day', description: 'Responds with today\'s Astronomy Picture of the Day.', clientPermissions: ['ATTACH_FILES'] });