aboutsummaryrefslogtreecommitdiff
path: root/commands/Utility/suggest.js
diff options
context:
space:
mode:
authorJustin <jtsshieh@outlook.com>2019-11-02 11:02:19 -0400
committerJustin <jtsshieh@outlook.com>2019-11-02 11:02:19 -0400
commit7031fa12ba79281edc49df972311c13ad0e8fa53 (patch)
tree60410a33fe45add85a9dc962c975be478f3f8cff /commands/Utility/suggest.js
parent106530d5dc53166632a6a0ecc8930eb2b1ed4bfd (diff)
downloadPokeBot-7031fa12ba79281edc49df972311c13ad0e8fa53.tar.gz
PokeBot-7031fa12ba79281edc49df972311c13ad0e8fa53.tar.bz2
PokeBot-7031fa12ba79281edc49df972311c13ad0e8fa53.zip
es-lint settings added + linted all files
Diffstat (limited to 'commands/Utility/suggest.js')
-rw-r--r--commands/Utility/suggest.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/commands/Utility/suggest.js b/commands/Utility/suggest.js
index f1b4206..b935977 100644
--- a/commands/Utility/suggest.js
+++ b/commands/Utility/suggest.js
@@ -8,11 +8,11 @@
* *************************************/
exports.run = async (bot, msg, args) => {
- const { RichEmbed } = require('discord.js');
+ const {RichEmbed} = require('discord.js');
const suggestionChannel = await bot.plugins.settings.getStr('suggestions', msg.member.guild.id);
bot.channels.find('id', suggestionChannel).send(
new RichEmbed()
- .setColor (0x00ae86)
+ .setColor(0x00ae86)
.setTitle('Suggestion')
.setDescription('This is a suggestion from a community member for something relating to the server. Please rate it based on your opinion, and a staff member will decide what to do with the suggestion.')
.addField('Suggestion Contents', args.join(' '))
@@ -24,11 +24,11 @@ exports.run = async (bot, msg, args) => {
exports.conf = {
aliases: [],
- guildOnly: true,
+ guildOnly: true
};
exports.help = {
name: 'suggest',
description: 'Suggest a feature for the bot or the server.',
- usage: '<...suggestion>',
+ usage: '<...suggestion>'
};