aboutsummaryrefslogtreecommitdiff
path: root/commands/say.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/say.js')
-rw-r--r--commands/say.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/say.js b/commands/say.js
index 8409ec7..181092c 100644
--- a/commands/say.js
+++ b/commands/say.js
@@ -3,7 +3,7 @@ exports.run = async (bot, msg, args) => {
msg.reply('Nope! You need the person who created this bot to use this command.');
}
else {
- msg.channel.sendMessage(args.join(' '));
+ msg.channel.instrumented(args.join(' '));
msg.delete();
}
};