aboutsummaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/say.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/say.js b/src/commands/say.js
index 2e6c918..dfa2323 100644
--- a/src/commands/say.js
+++ b/src/commands/say.js
@@ -2,7 +2,7 @@ module.exports.run = async (client, message, args) => {
if (!['242775871059001344',].includes(message.author.id)) return message.reply('Nope! You need the person who created this bot to use this command.');
let absay = args.join(" ");
message.delete().catch();
- message.reply(absay);
+ message.channel.send(absay);
};
exports.conf = {