aboutsummaryrefslogtreecommitdiff
path: root/commands/Getting Started/start.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/Getting Started/start.js')
-rw-r--r--commands/Getting Started/start.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/commands/Getting Started/start.js b/commands/Getting Started/start.js
index aa8eb9f..152cc5b 100644
--- a/commands/Getting Started/start.js
+++ b/commands/Getting Started/start.js
@@ -8,8 +8,10 @@
* *************************************/
exports.run = (bot, msg) => {
- const { RichEmbed } = require('discord.js');
- if (msg.guild.id != '417088992329334792') return msg.reply ('This is a PokeWorld exclusive command. Sorry!');
+ const {RichEmbed} = require('discord.js');
+ if (msg.guild.id != '417088992329334792') {
+ return msg.reply('This is a PokeWorld exclusive command. Sorry!');
+ }
msg.channel.send(
new RichEmbed()
.setColor(0x00ae86)
@@ -23,10 +25,10 @@ exports.run = (bot, msg) => {
exports.conf = {
aliases: ['noobs', 'newcomers'],
- guildOnly: true,
+ guildOnly: true
};
exports.help = {
name: 'start',
- description: 'Introduces you to the PokeWorld server!',
+ description: 'Introduces you to the PokeWorld server!'
};