diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-01-02 13:53:18 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-01-02 13:53:18 -0500 |
| commit | e5a8fa84938e76dcc7177b46efab1815eca7c293 (patch) | |
| tree | d53e8fd7811bb4e4ae2b11380bba8df1d2d7b704 /commands/help.js | |
| parent | 898d230151b13b386108e139ffe34648da45675d (diff) | |
| download | AleeBot-e5a8fa84938e76dcc7177b46efab1815eca7c293.tar.gz AleeBot-e5a8fa84938e76dcc7177b46efab1815eca7c293.tar.bz2 AleeBot-e5a8fa84938e76dcc7177b46efab1815eca7c293.zip | |
2020 changes and tweaked some stuff
Diffstat (limited to 'commands/help.js')
| -rw-r--r-- | commands/help.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/commands/help.js b/commands/help.js index dd4a85f..eb53b40 100644 --- a/commands/help.js +++ b/commands/help.js @@ -1,7 +1,7 @@ /****************************************
*
* Help: Command for AleeBot
- * Copyright (C) 2018 AleeCorp
+ * Copyright (C) 2017-2020 Alee Productions
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@ const fs = require('fs'); module.exports.run = async (client, message) => {
const categories = [];
const commands = Array.from(client.commands.keys());
- const settings = require('../storage/settings.json')
+ const settings = require('../storage/settings.json');
commands.forEach(function(x) {
if (!categories.includes(client.commands.get(x).help.category)) {
categories.push(client.commands.get(x).help.category);
@@ -41,9 +41,9 @@ module.exports.run = async (client, message) => { if (!message.guild.member(client.user).hasPermission('EMBED_LINKS')) return message.reply('ERROR: AleeBot doesn\'t have the permission to send embed links please enable them to use the full help.');
const embed = new Discord.RichEmbed()
.setAuthor('AleeBot ' + require('../storage/settings.json').abVersion + ` Help and on ${client.guilds.size} servers`, client.user.avatarURL)
- .setDescription('Every command you input into AleeBot is `' + prefix + '`\n\nATTENTION ALL: ALEEBOT WILL BE CONTINUING BUT ALEE WON\'T BE DEVELOPING IT MUCH...')
+ .setDescription('Every command you input into AleeBot is `' + prefix + '`')
.setColor('#1fd619')
- .setFooter('AleeCorp Copyright 2018, Licensed with GPL-3.0');
+ .setFooter('© Copyright 2017-2020 Alee Productions, Licensed with GPL-3.0');
categories.forEach(function(x) {
let cat = '';
|
