From f6f2105776a40fd86ec7e8848167d20b03421050 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Wed, 30 Oct 2019 22:10:06 -0400 Subject: [PATCH] fix usage typos --- src/commands/cwg.ts | 2 +- src/commands/deleteaccount.ts | 2 +- src/commands/warn.ts | 4 ++-- src/commands/whois.ts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/commands/cwg.ts b/src/commands/cwg.ts index 711084f..8b30510 100644 --- a/src/commands/cwg.ts +++ b/src/commands/cwg.ts @@ -12,7 +12,7 @@ export default class CWG extends Command { super(client); this.name = 'cwg'; this.description = 'Manages aspects for the CWG.'; - this.usage = `${this.client.config.prefix}cwg create [User ID/Username] [Domain] [Port] \n${this.client.config.prefix}cwg data [Domain/Port]`; + this.usage = `${this.client.config.prefix}cwg create [User ID | Username] [Domain] [Port] \n${this.client.config.prefix}cwg data [Domain/Port]`; this.permissions = { roles: ['446104438969466890'] }; this.enabled = true; } diff --git a/src/commands/deleteaccount.ts b/src/commands/deleteaccount.ts index 65efd74..0c54e0e 100644 --- a/src/commands/deleteaccount.ts +++ b/src/commands/deleteaccount.ts @@ -8,7 +8,7 @@ export default class DeleteAccount extends Command { super(client); this.name = 'deleteaccount'; this.description = 'Delete an account on the Cloud VM'; - this.usage = `${this.client.config.prefix}deleteaccount [User Name || User ID || Email Address] [Reason] | ${this.client.config.prefix}deleteaccount [Username] [Reason] | ${this.client.config.prefix}deleteaccount [Email] [Reason]`; + this.usage = `${this.client.config.prefix}deleteaccount [User Name | User ID | Email Address] [Reason] | ${this.client.config.prefix}deleteaccount [Username] [Reason] | ${this.client.config.prefix}deleteaccount [Email] [Reason]`; this.aliases = ['deleteacc', 'dacc', 'daccount', 'delete']; this.permissions = { roles: ['475817826251440128', '525441307037007902'] }; this.enabled = true; diff --git a/src/commands/warn.ts b/src/commands/warn.ts index ea27d96..5c6e767 100644 --- a/src/commands/warn.ts +++ b/src/commands/warn.ts @@ -1,14 +1,14 @@ /* eslint-disable consistent-return */ import { Message } from 'eris'; import { Client } from '..'; -import { Command, RichEmbed } from '../class'; +import { Command } from '../class'; export default class Warn extends Command { constructor(client: Client) { super(client); this.name = 'warn'; this.description = 'Sends an official warning to user.'; - this.usage = `${this.client.config.prefix}warn [username || user ID]`; + this.usage = `${this.client.config.prefix}warn [username | user ID]`; this.permissions = { roles: ['446104438969466890'] }; this.enabled = true; } diff --git a/src/commands/whois.ts b/src/commands/whois.ts index 9494b7b..e109a95 100644 --- a/src/commands/whois.ts +++ b/src/commands/whois.ts @@ -10,7 +10,7 @@ export default class Whois extends Command { this.name = 'whois'; this.description = 'Views information for a cloud account.'; this.aliases = ['account', 'user']; - this.usage = `${this.client.config.prefix}account [User Name || User ID || Email Address]`; + this.usage = `${this.client.config.prefix}account [User Name | User ID | Email Address]`; this.permissions = { roles: ['446104438969466890'] }; this.enabled = true; }