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'] });