Make character-count an Analyzer

This commit is contained in:
Daniel Odendahl Jr
2018-10-25 22:07:55 +00:00
parent deac8d64b9
commit 839ad11b7e
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -49,7 +49,7 @@ the [home server](https://discord.gg/sbMe32W).
6. Run `npm i -g pm2` to install PM2. 6. Run `npm i -g pm2` to install PM2.
7. Run `pm2 start Xiao.js --name xiao` to run the bot. 7. Run `pm2 start Xiao.js --name xiao` to run the bot.
## Commands (328) ## Commands (329)
### Utility: ### Utility:
* **eval:** Executes JavaScript code. * **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. * **age:** Responds with how old someone born in a certain year is.
* **butt:** Determines a user's butt quality. * **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. * **chinese-zodiac:** Responds with the Chinese Zodiac Sign for the given year.
* **coolness:** Determines a user's coolness. * **coolness:** Determines a user's coolness.
* **dick:** Determines your dick size. * **dick:** Determines your dick size.
@@ -388,7 +389,6 @@ the [home server](https://discord.gg/sbMe32W).
### Number Manipulation: ### Number Manipulation:
* **character-count:** Responds with the character count of text.
* **currency:** Converts currency from one currency to another. * **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. * **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. * **grade:** Determines your grade on an assignment on an 100-point scale.
@@ -6,7 +6,7 @@ module.exports = class CharacterCountCommand extends Command {
super(client, { super(client, {
name: 'character-count', name: 'character-count',
aliases: ['characters', 'chars', 'length'], aliases: ['characters', 'chars', 'length'],
group: 'number-edit', group: 'analyze',
memberName: 'character-count', memberName: 'character-count',
description: 'Responds with the character count of text.', description: 'Responds with the character count of text.',
args: [ args: [
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "xiao", "name": "xiao",
"version": "96.1.0", "version": "96.1.1",
"description": "Your personal server companion.", "description": "Your personal server companion.",
"main": "Xiao.js", "main": "Xiao.js",
"scripts": { "scripts": {