diff options
| author | Unknown <jtsshieh@outlook.com> | 2018-02-24 11:29:26 -0500 |
|---|---|---|
| committer | Unknown <jtsshieh@outlook.com> | 2018-02-24 11:29:26 -0500 |
| commit | c8e874fb047ea848be778627a8321eb6d3a58747 (patch) | |
| tree | d4deb8af9322033155f01ddf36b46208daddd8b8 /commands/say.js | |
| parent | 6cafd2f4fe873d90eee2834dd1d6d1ff024dadc3 (diff) | |
| download | PokeBot-c8e874fb047ea848be778627a8321eb6d3a58747.tar.gz PokeBot-c8e874fb047ea848be778627a8321eb6d3a58747.tar.bz2 PokeBot-c8e874fb047ea848be778627a8321eb6d3a58747.zip | |
SAy fix
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 181092c..9d7c156 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.instrumented(args.join(' ')); + msg.channel.send(args.join(' ')); msg.delete(); } }; |
