diff options
Diffstat (limited to 'src/commands/user')
| -rw-r--r-- | src/commands/user/age.ts | 4 | ||||
| -rw-r--r-- | src/commands/user/pfp.ts | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/user/age.ts b/src/commands/user/age.ts index 0ba4515..f541d67 100644 --- a/src/commands/user/age.ts +++ b/src/commands/user/age.ts @@ -3,7 +3,7 @@ import emoji from 'emoji-random' import { formatDistance, formatRelative } from 'date-fns' import { stripIndents } from 'common-tags' -module.exports = class AgeFun extends Command { +module.exports = class AgeUser extends Command { constructor(client) { super(client, { name: 'age', @@ -11,7 +11,7 @@ module.exports = class AgeFun extends Command { 'account-age', 'accountage' ], - group: 'fun', + group: 'user', memberName: 'age', description: 'Checks when a specified Discord account was created.', examples: ['uwu!age', 'uwu!age @sin#1337'], diff --git a/src/commands/user/pfp.ts b/src/commands/user/pfp.ts index f4fdee5..ac26a26 100644 --- a/src/commands/user/pfp.ts +++ b/src/commands/user/pfp.ts @@ -14,9 +14,9 @@ module.exports = class PFPServer extends Command { 'avatar', 'avi' ], - group: 'server', + group: 'user', memberName: 'pfp', - description: 'Grabs the profile picture of a given user.', + description: 'Grabs the profile picture of a specified user.', args: [ { key: 'userID', |