From 75b85204814da8c39c90948c37c4e63cf87fef39 Mon Sep 17 00:00:00 2001 From: derpystuff <3515180-derpystuff@users.noreply.gitlab.com> Date: Fri, 30 Jun 2023 23:10:40 +0200 Subject: [PATCH] add aliases to some commands --- commands/message/core/help.js | 1 + commands/message/info/guild.js | 2 +- commands/message/info/user.js | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/message/core/help.js b/commands/message/core/help.js index 20e78e2..964a5b5 100644 --- a/commands/message/core/help.js +++ b/commands/message/core/help.js @@ -102,6 +102,7 @@ const categories = { module.exports = { name: 'help', label: 'command', + aliases: ['cmds', 'cmd', 'commands', 'command'], metadata: { description: 'List all commands, get more information about individual commands.', description_short: 'Show full command list', diff --git a/commands/message/info/guild.js b/commands/message/info/guild.js index 7bd622f..b83bd69 100644 --- a/commands/message/info/guild.js +++ b/commands/message/info/guild.js @@ -10,7 +10,7 @@ const { Permissions } = require("detritus-client/lib/constants"); module.exports = { name: 'server', label: 'user', - aliases: ['guild', 'guildinfo'], + aliases: ['guild', 'guildinfo', 'serverinfo'], metadata: { description: 'Displays information about the server.', description_short: 'Information about the server', diff --git a/commands/message/info/user.js b/commands/message/info/user.js index 4fb2853..79bdc32 100644 --- a/commands/message/info/user.js +++ b/commands/message/info/user.js @@ -11,7 +11,7 @@ const { Permissions } = require("detritus-client/lib/constants"); module.exports = { name: 'user', label: 'user', - aliases: ['u', 'profile'], + aliases: ['u', 'profile', 'userinfo', 'ui'], metadata: { description: 'Displays information about a discord user. Accepts IDs, Mentions and Usernames.', description_short: 'Information about discord users',