diff --git a/commands/random/cleverbot.js b/commands/random/cleverbot.js deleted file mode 100644 index 36a5c73a..00000000 --- a/commands/random/cleverbot.js +++ /dev/null @@ -1,35 +0,0 @@ -const Command = require('../../structures/Command'); -const Cleverbot = require('cleverio'); -const { CLEVS_KEY, CLEVS_USER, CLEVS_NICK } = process.env; - -module.exports = class CleverbotCommand extends Command { - constructor(client) { - super(client, { - name: 'cleverbot', - aliases: ['clevs', 'chat'], - group: 'random', - memberName: 'cleverbot', - description: 'Talk to Cleverbot.', - args: [ - { - key: 'text', - prompt: 'What do you want to say to Cleverbot?', - type: 'string' - } - ] - }); - - this.clevs = new Cleverbot({ - key: CLEVS_KEY, - user: CLEVS_USER, - nick: CLEVS_NICK - }); - this.clevs.create(); - } - - async run(msg, args) { - const { text } = args; - const { response } = await this.clevs.ask(text); - return msg.reply(response); - } -}; diff --git a/commands/search/urban.js b/commands/search/urban.js index 4a83b166..1eef114d 100644 --- a/commands/search/urban.js +++ b/commands/search/urban.js @@ -33,7 +33,7 @@ module.exports = class UrbanCommand extends Command { .setTitle(body.list[0].word) .setDescription(body.list[0].definition.substr(0, 2000)) .addField('❯ Example', - body.list[0].example.substr(0, 2000) || 'None'); + body.list[0].example.substr(0, 1024) || 'None'); return msg.embed(embed); } }; diff --git a/html/carbonfeat.html b/html/carbonfeat.html index 15606f03..f54edd98 100644 --- a/html/carbonfeat.html +++ b/html/carbonfeat.html @@ -23,7 +23,6 @@