Stop Logging Command Use

This commit is contained in:
Daniel Odendahl Jr
2017-04-08 03:35:45 +00:00
parent fb88513e4f
commit 01c7b13981
102 changed files with 1 additions and 102 deletions
-1
View File
@@ -15,7 +15,6 @@ module.exports = class CanYouNotCommand extends commando.Command {
if (message.channel.type !== 'dm') {
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
}
console.log(`[Command] ${message.content}`);
return message.say('Can YOU not?');
}
};
-1
View File
@@ -19,7 +19,6 @@ module.exports = class GiveFlowerCommand extends commando.Command {
if (message.channel.type !== 'dm') {
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
}
console.log(`[Command] ${message.content}`);
return message.say('Ooh, what a pretty flower. What, I may have it? Thanks! I like flowers, yes? ♪');
}
};
-1
View File
@@ -15,7 +15,6 @@ module.exports = class LennyCommand extends commando.Command {
if (message.channel.type !== 'dm') {
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
}
console.log(`[Command] ${message.content}`);
return message.say('( ͡° ͜ʖ ͡°)');
}
};
-1
View File
@@ -17,7 +17,6 @@ module.exports = class NitroCommand extends commando.Command {
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
if (!message.channel.permissionsFor(this.client.user).hasPermission('EMBED_LINKS')) return message.say(':x: Error! I don\'t have the Embed Links Permission!');
}
console.log(`[Command] ${message.content}`);
const embed = new Discord.RichEmbed()
.setAuthor('Discord Nitro')
.setThumbnail('https://pbs.twimg.com/profile_images/814184180649197568/y2eZcVMq.jpg')
-1
View File
@@ -15,7 +15,6 @@ module.exports = class SlowClapCommand extends commando.Command {
if (message.channel.type !== 'dm') {
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
}
console.log(`[Command] ${message.content}`);
return message.say('*slow clap*');
}
};
-1
View File
@@ -16,7 +16,6 @@ module.exports = class SpamCommand extends commando.Command {
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
if (!message.channel.permissionsFor(this.client.user).hasPermission('ATTACH_FILES')) return message.say(':x: Error! I don\'t have the Attach Files Permission!');
}
console.log(`[Command] ${message.content}`);
return message.channel.sendFile('./images/Spam.jpg');
}
};
-1
View File
@@ -44,7 +44,6 @@ module.exports = class StrawpollCommand extends commando.Command {
if (message.channel.type !== 'dm') {
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
}
console.log(`[Command] ${message.content}`);
const title = args.title;
const choices = args.choices.split(' | ');
if (choices.length < 2) return message.say(':x: Error! You provided less than two choices!');