summaryrefslogtreecommitdiff
path: root/commands/say.js
blob: 6d395c6f9412871073f98010fcb61e978db7163d (plain) (blame)
1
2
3
4
5
6
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();

}