/[sudobot]/trunk/deploy-commands.js
ViewVC logotype

Diff of /trunk/deploy-commands.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 289 by rakin, Mon Jul 29 17:29:17 2024 UTC revision 290 by rakin, Mon Jul 29 17:29:23 2024 UTC
# Line 67  let commands = [ Line 67  let commands = [
67    
68      // INFORMATION      // INFORMATION
69      new SlashCommandBuilder().setName('stats').setDescription('Show the server statistics'),      new SlashCommandBuilder().setName('stats').setDescription('Show the server statistics'),
70        new SlashCommandBuilder().setName('lookup').setDescription('Lookup something')
71            .addSubcommand(subcommand => subcommand.setName("user").setDescription("User lookup")
72                .addUserOption(option => option.setName("user").setDescription("The user to search").setRequired(true))
73            )
74            .addSubcommand(subcommand => subcommand.setName("guild").setDescription("Server/Guild lookup")
75                .addStringOption(option => option.setName("server").setDescription("The ID of the server/guild to lookup").setRequired(true))  
76            ),
77    
78      new SlashCommandBuilder().setName('profile').setDescription('Show someone\'s profile')      new SlashCommandBuilder().setName('profile').setDescription('Show someone\'s profile')
79          .addUserOption(option => option.setName('user').setDescription('The user')),          .addUserOption(option => option.setName('user').setDescription('The user')),
80      new SlashCommandBuilder().setName('avatar').setDescription('Show someone\'s avatar')      new SlashCommandBuilder().setName('avatar').setDescription('Show someone\'s avatar')

Legend:
Removed from v.289  
changed lines
  Added in v.290

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26