From ded06571cb04a066d6734250e261bad6ed2fa1cd Mon Sep 17 00:00:00 2001 From: TheEdgeNK Date: Thu, 9 Aug 2018 11:37:44 -0400 Subject: 2.0 Alpha 1 Version 2 --- commands/Utility/recentchanges.js | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 commands/Utility/recentchanges.js (limited to 'commands/Utility/recentchanges.js') diff --git a/commands/Utility/recentchanges.js b/commands/Utility/recentchanges.js new file mode 100644 index 0000000..a8e93ad --- /dev/null +++ b/commands/Utility/recentchanges.js @@ -0,0 +1,34 @@ +/**************************************** + * + * Recent Changes: Plugin for Galaxy that tells you about new features and fixes. + * Copyright (C) 2018 TheEdge, jtsshieh, Alee + * + * Licensed under the Open Software License version 3.0 + * + * *************************************/ +module.exports.run = async (client, bot, message) => { + const { RichEmbed } = require('discord.js'); + const embed = new RichEmbed(); + + embed + .setColor (0x36393e) + .setTitle ("These are the newest features") + .setDescription ("And fixes too!") + .setFooter ("Galaxy 2.0 Alpha 1"); + + embed.addField ("New Features", "Added the recent changes command. This command tells the user about the newest additions to the bot.\nQuote commands have been added. Heard of Victor? We don't care. Have his quotes anyways! We also have normal quotes from random members of the Universe community too! This comes as the part of a merge between another bot."); + embed.addField ("Fixes", "Changed the add1k command name to exploit.\nFixed licensing info") + + }; + + exports.conf = { + aliases: [], + guildOnly: false, + }; + exports.help = { + name: 'info', + description: 'Tells you information about the bot', + usage: 'info', + category: '- Information Commands', + }; + \ No newline at end of file -- cgit v1.2.3