aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjtsshieh <jtsshieh@outlook.com>2018-10-22 21:53:35 -0400
committerGitHub <noreply@github.com>2018-10-22 21:53:35 -0400
commit65b5f240d67c3a14141707ad4bea115904a6d9a0 (patch)
treeeb59bac7d9ff5c272d21192e66787d2a09ac2432
parent419221922c2719b88759ccfb36a846230b01c2fd (diff)
downloadPokeBot-65b5f240d67c3a14141707ad4bea115904a6d9a0.tar.gz
PokeBot-65b5f240d67c3a14141707ad4bea115904a6d9a0.tar.bz2
PokeBot-65b5f240d67c3a14141707ad4bea115904a6d9a0.zip
Delete recentchanges.js
-rw-r--r--commands/Utility/recentchanges.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/commands/Utility/recentchanges.js b/commands/Utility/recentchanges.js
deleted file mode 100644
index 35b01b9..0000000
--- a/commands/Utility/recentchanges.js
+++ /dev/null
@@ -1,33 +0,0 @@
-/****************************************
- *
- * 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 (bot, message) => {
- const { RichEmbed } = require('discord.js');
-
- msg.channel.send(
- new RichEmbed()
- .setColor (0x36393e)
- .setTitle ("These are the newest features")
- .setDescription ("And fixes too!")
- .setFooter ("Galaxy 2.0 Alpha 1");
- .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.");
- .addField ("Fixes", "Changed the add1k command name to exploit.\nFixed licensing info")
- );
-
- };
-
- exports.conf = {
- aliases: [],
- guildOnly: false,
- };
- exports.help = {
- name: 'recentchanges',
- description: 'Tells you information about the bot',
- usage: 'n/A',,
- };
-