diff --git a/commands/cleverbot/cleverbot.js b/commands/cleverbot/cleverbot.js index efa91806..29248f10 100644 --- a/commands/cleverbot/cleverbot.js +++ b/commands/cleverbot/cleverbot.js @@ -29,7 +29,7 @@ module.exports = class CleverbotCommand extends Command { } async run(msg, { text }) { - if (this.client.cleverbots.has(msg.channel.id)) { + if (this.client.cleverbots.has(msg.channel.id) && !text) { return msg.say('There is already a Cleverbot conversation in this channel.'); } const cleverbot = new Cleverbot(this.client, msg.channel.id, msg.author.id);