summaryrefslogtreecommitdiff
path: root/commands/say.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/say.js')
-rw-r--r--commands/say.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/commands/say.js b/commands/say.js
new file mode 100644
index 0000000..6d395c6
--- /dev/null
+++ b/commands/say.js
@@ -0,0 +1,7 @@
+const Discord = require('discord.js');
+exports.run = (client, message, args, config) => {
+ if(message.author.id !== config.ownerID) return;
+ message.channel.sendMessage(args.join(" "));
+ message.delete();
+
+}