Updated subcommand types

This commit is contained in:
2025-03-23 16:44:42 +01:00
parent e67307a6bd
commit d8ebeff481
11 changed files with 28 additions and 19 deletions

View File

@@ -24,17 +24,17 @@ export default {
const subcommand = interaction.options.getSubcommand()
if (subcommand === "member") {
await guildMember(interaction)
await guildMember({ interaction })
return
}
if (subcommand === "info") {
await guildInfo(interaction)
await guildInfo({ interaction })
return
}
if (subcommand === "top") {
await guildTop(interaction)
await guildTop({ interaction })
return
}