Space after conditionals

This commit is contained in:
Daniel Odendahl Jr
2017-05-08 13:46:36 +00:00
parent 7e20086b2a
commit 8ba552b21a
78 changed files with 313 additions and 379 deletions
+2 -6
View File
@@ -8,11 +8,7 @@ module.exports = class GuildInfoCommand extends Command {
constructor(client) {
super(client, {
name: 'server',
aliases: [
'guild',
'server-info',
'guild-info'
],
aliases: ['guild', 'server-info', 'guild-info'],
group: 'guildinfo',
memberName: 'server',
description: 'Gives some info on the current server.',
@@ -21,7 +17,7 @@ module.exports = class GuildInfoCommand extends Command {
}
run(msg) {
if(!msg.channel.permissionsFor(this.client.user).has('EMBED_LINKS'))
if (!msg.channel.permissionsFor(this.client.user).has('EMBED_LINKS'))
return msg.say('This Command requires the `Embed Links` Permission.');
const embed = new RichEmbed()
.setColor(0x00AE86)