diff options
| author | Unknown <jtsshieh@outlook.com> | 2018-02-24 10:34:42 -0500 |
|---|---|---|
| committer | Unknown <jtsshieh@outlook.com> | 2018-02-24 10:34:42 -0500 |
| commit | d1e4635c0831dcc6691e634eaf3965294e8f68ef (patch) | |
| tree | 4111bdda3c35a0d01a98a09c92c1b0fbd6f9f84d /commands/say.js | |
| parent | 76f06397b654d35a9656a247d310fef7d812ae16 (diff) | |
| download | PokeBot-d1e4635c0831dcc6691e634eaf3965294e8f68ef.tar.gz PokeBot-d1e4635c0831dcc6691e634eaf3965294e8f68ef.tar.bz2 PokeBot-d1e4635c0831dcc6691e634eaf3965294e8f68ef.zip | |
Bugfixes
Diffstat (limited to 'commands/say.js')
| -rw-r--r-- | commands/say.js | 2 |
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(); } }; |
