diff options
| author | 8cy <[email protected]> | 2020-04-23 19:06:09 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-23 19:06:09 -0700 |
| commit | 8a2c9df3fd75a08d2b4acabe0b3a6bd62da22b34 (patch) | |
| tree | 08e8b18aebae0b3836de94484185fabb14a860e8 /src/commands/crypto | |
| parent | change mongdburl to mlab, v7.4.2 (diff) | |
| download | dep-core-8a2c9df3fd75a08d2b4acabe0b3a6bd62da22b34.tar.xz dep-core-8a2c9df3fd75a08d2b4acabe0b3a6bd62da22b34.zip | |
shift groups around, new mod cmds, v7.5.0
Diffstat (limited to 'src/commands/crypto')
| -rw-r--r-- | src/commands/crypto/btc.ts | 4 | ||||
| -rw-r--r-- | src/commands/crypto/btcchange.ts | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/crypto/btc.ts b/src/commands/crypto/btc.ts index 1c467ab..3f3ffe9 100644 --- a/src/commands/crypto/btc.ts +++ b/src/commands/crypto/btc.ts @@ -3,12 +3,12 @@ import emoji from 'emoji-random'; import btc from 'btc-value'; btc.setApiKey('a43419ce-fc59-4951-8af9-20c5e36ef73f'); -module.exports = class BTCUtility extends Command { +module.exports = class BTCCrypto extends Command { constructor(client) { super(client, { name: 'btc', aliases: ['bitcoin', 'crypto'], - group: 'utility', + group: 'crypto', memberName: 'btc', description: 'Allows you to check the current Bitcoin price.', args: [ diff --git a/src/commands/crypto/btcchange.ts b/src/commands/crypto/btcchange.ts index 9ef5d4d..67eb0c7 100644 --- a/src/commands/crypto/btcchange.ts +++ b/src/commands/crypto/btcchange.ts @@ -3,12 +3,12 @@ import btc from 'btc-value'; import emoji from 'emoji-random'; btc.setApiKey('a43419ce-fc59-4951-8af9-20c5e36ef73f'); -module.exports = class BTCChangeUtility extends Command { +module.exports = class BTCChangeCrypto extends Command { constructor(client) { super(client, { name: 'btcchange', aliases: ['bitcoinchange', 'cryptochange', 'btcc'], - group: 'utility', + group: 'crypto', memberName: 'btcchange', description: 'Allows you to check the fluctuation in Bitcoin prices within a specified amount of time.', args: [ |