diff --git a/Xiao.js b/Xiao.js index 99e696ba..462b1f6d 100644 --- a/Xiao.js +++ b/Xiao.js @@ -230,7 +230,7 @@ client.on('messageCreate', async msg => { if (cleverbot) { if (!cleverbot.shouldRespond(msg)) return; client.registry.commands.get('cleverbot').uses++; - msg.channel.startTyping().catch(() => null); + msg.channel.sendTyping().catch(() => null); try { const response = await cleverbot.respond(msg.cleanContent); msg.channel.stopTyping(true);