From 839ad11b7eba55bbd99b74ecd839b9726205d884 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 25 Oct 2018 22:07:55 +0000 Subject: [PATCH] Make character-count an Analyzer --- README.md | 4 ++-- commands/{number-edit => analyze}/character-count.js | 2 +- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename commands/{number-edit => analyze}/character-count.js (96%) diff --git a/README.md b/README.md index 3378d78f..bacca71d 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ the [home server](https://discord.gg/sbMe32W). 6. Run `npm i -g pm2` to install PM2. 7. Run `pm2 start Xiao.js --name xiao` to run the bot. -## Commands (328) +## Commands (329) ### Utility: * **eval:** Executes JavaScript code. @@ -224,6 +224,7 @@ the [home server](https://discord.gg/sbMe32W). * **age:** Responds with how old someone born in a certain year is. * **butt:** Determines a user's butt quality. +* **character-count:** Responds with the character count of text. * **chinese-zodiac:** Responds with the Chinese Zodiac Sign for the given year. * **coolness:** Determines a user's coolness. * **dick:** Determines your dick size. @@ -388,7 +389,6 @@ the [home server](https://discord.gg/sbMe32W). ### Number Manipulation: -* **character-count:** Responds with the character count of text. * **currency:** Converts currency from one currency to another. * **final-grade:** Determines the grade you need to make on your final to get your desired course grade. * **grade:** Determines your grade on an assignment on an 100-point scale. diff --git a/commands/number-edit/character-count.js b/commands/analyze/character-count.js similarity index 96% rename from commands/number-edit/character-count.js rename to commands/analyze/character-count.js index 08931247..b194748d 100644 --- a/commands/number-edit/character-count.js +++ b/commands/analyze/character-count.js @@ -6,7 +6,7 @@ module.exports = class CharacterCountCommand extends Command { super(client, { name: 'character-count', aliases: ['characters', 'chars', 'length'], - group: 'number-edit', + group: 'analyze', memberName: 'character-count', description: 'Responds with the character count of text.', args: [ diff --git a/package.json b/package.json index a275c437..29a9dbab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "96.1.0", + "version": "96.1.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {