aboutsummaryrefslogtreecommitdiff
path: root/commands/say.js
diff options
context:
space:
mode:
authorUnknown <jtsshieh@outlook.com>2018-02-24 11:29:26 -0500
committerUnknown <jtsshieh@outlook.com>2018-02-24 11:29:26 -0500
commitc8e874fb047ea848be778627a8321eb6d3a58747 (patch)
treed4deb8af9322033155f01ddf36b46208daddd8b8 /commands/say.js
parent6cafd2f4fe873d90eee2834dd1d6d1ff024dadc3 (diff)
downloadPokeBot-c8e874fb047ea848be778627a8321eb6d3a58747.tar.gz
PokeBot-c8e874fb047ea848be778627a8321eb6d3a58747.tar.bz2
PokeBot-c8e874fb047ea848be778627a8321eb6d3a58747.zip
SAy fix
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 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();
}
};