aboutsummaryrefslogtreecommitdiff
path: root/commands/Owners Only/say.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/Owners Only/say.js')
-rw-r--r--commands/Owners Only/say.js12
1 files changed, 7 insertions, 5 deletions
diff --git a/commands/Owners Only/say.js b/commands/Owners Only/say.js
index ace2874..ad1a9bd 100644
--- a/commands/Owners Only/say.js
+++ b/commands/Owners Only/say.js
@@ -7,23 +7,25 @@
*
* *************************************/
-exports.run = async (bot, msg, args) => {
+exports.run = (bot, msg, args) => {
msg.channel.send(args.join(' '));
msg.delete();
};
exports.checkPermission = (bot, member) => {
- if (!['242775871059001344', '247221105515823104', '236279900728721409'].includes(member.id)) return false;
+ if (!['242775871059001344', '247221105515823104', '236279900728721409'].includes(member.id)) {
+ return false;
+ }
return true;
-}
+};
exports.conf = {
aliases: [],
- guildOnly: true,
+ guildOnly: true
};
exports.help = {
name: 'say',
description: 'Control on what the bot says.',
- usage: '<...text>',
+ usage: '<...text>'
};