aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
authorUnknown <jtsshieh@outlook.com>2018-02-24 10:34:42 -0500
committerUnknown <jtsshieh@outlook.com>2018-02-24 10:34:42 -0500
commitd1e4635c0831dcc6691e634eaf3965294e8f68ef (patch)
tree4111bdda3c35a0d01a98a09c92c1b0fbd6f9f84d /commands
parent76f06397b654d35a9656a247d310fef7d812ae16 (diff)
downloadPokeBot-d1e4635c0831dcc6691e634eaf3965294e8f68ef.tar.gz
PokeBot-d1e4635c0831dcc6691e634eaf3965294e8f68ef.tar.bz2
PokeBot-d1e4635c0831dcc6691e634eaf3965294e8f68ef.zip
Bugfixes
Diffstat (limited to 'commands')
-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();
}
};