From 8c02e138d71957f03c2b813683c2d267bbc860a5 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Tue, 9 May 2017 17:59:59 +0000 Subject: [PATCH] Fix spacing in cleverbot --- package.json | 2 +- structures/Cleverbot.js | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 6189de05..da27894d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiaobot", - "version": "18.9.1", + "version": "18.9.2", "description": "A Discord Bot", "main": "shardingmanager.js", "scripts": { diff --git a/structures/Cleverbot.js b/structures/Cleverbot.js index e76d1ab8..a2ba90e0 100644 --- a/structures/Cleverbot.js +++ b/structures/Cleverbot.js @@ -6,17 +6,17 @@ class Cleverbot { this.user = options.user; this.nick = options.nick; } - + create() { - return request - .post('https://cleverbot.io/1.0/create') - .send({ - user: this.user, - key: this.key, - nick: this.nick - }); + return request + .post('https://cleverbot.io/1.0/create') + .send({ + user: this.user, + key: this.key, + nick: this.nick + }); } - + ask(text) { return request .post('https://cleverbot.io/1.0/ask')