diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-09-30 19:12:48 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-09-30 19:12:48 -0400 |
commit | aa4cb7e51823f7a2c884c17a8d1010217cce301b (patch) | |
tree | bffc7261296f4ee6d164efd18713c0ec5b1dd104 /src/commands/utilities | |
parent | 0ecad260c69fffa751fb5d245e0e4f804191970b (diff) | |
download | tanzanite-aa4cb7e51823f7a2c884c17a8d1010217cce301b.tar.gz tanzanite-aa4cb7e51823f7a2c884c17a8d1010217cce301b.tar.bz2 tanzanite-aa4cb7e51823f7a2c884c17a8d1010217cce301b.zip |
convert multiword commands to use '-' as a word separator
Diffstat (limited to 'src/commands/utilities')
-rw-r--r-- | src/commands/utilities/steal.ts | 2 | ||||
-rw-r--r-- | src/commands/utilities/whoHasRole.ts | 4 | ||||
-rw-r--r-- | src/commands/utilities/wolframAlpha.ts | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/commands/utilities/steal.ts b/src/commands/utilities/steal.ts index 01c39ea..7d61016 100644 --- a/src/commands/utilities/steal.ts +++ b/src/commands/utilities/steal.ts @@ -4,7 +4,7 @@ import { Snowflake } from 'discord-api-types'; export default class StealCommand extends BushCommand { public constructor() { super('steal', { - aliases: ['steal', 'copyemoji'], + aliases: ['steal', 'copy-emoji'], category: 'utilities', description: { content: 'Steal an emoji from another server and add it to your own.', diff --git a/src/commands/utilities/whoHasRole.ts b/src/commands/utilities/whoHasRole.ts index f096cee..1b72d65 100644 --- a/src/commands/utilities/whoHasRole.ts +++ b/src/commands/utilities/whoHasRole.ts @@ -3,8 +3,8 @@ import { CommandInteraction, Role, Util } from 'discord.js'; export default class WhoHasRoleCommand extends BushCommand { public constructor() { - super('whohasrole', { - aliases: ['whohasrole', 'whr', 'dump'], + super('whoHasRole', { + aliases: ['who-has-role', 'whr', 'dump'], category: 'utilities', description: { content: 'Allows you to view what users have a certain role.', diff --git a/src/commands/utilities/wolframAlpha.ts b/src/commands/utilities/wolframAlpha.ts index 88dc65a..69e2ff4 100644 --- a/src/commands/utilities/wolframAlpha.ts +++ b/src/commands/utilities/wolframAlpha.ts @@ -6,12 +6,12 @@ import WolframAlphaAPI from 'wolfram-alpha-api'; export default class WolframAlphaCommand extends BushCommand { public constructor() { super('wolframAlpha', { - aliases: ['wolframalpha', 'wolfram', 'alpha', 'wolf', 'wa'], + aliases: ['wolfram-alpha', 'wolfram', 'alpha', 'wolf', 'wa'], category: 'utilities', description: { content: 'Queries Wolfram|Alpha for a result.', - usage: 'wolframalpha <expression>', - examples: ['wolframalpha what is the population of france'] + usage: 'wolfram-alpha <expression>', + examples: ['wolfram-alpha what is the population of france'] }, args: [ { |