Skip to content

Commit

Permalink
chore(bot): temporarily disable pickems lb command
Browse files Browse the repository at this point in the history
  • Loading branch information
shayypy committed Nov 23, 2024
1 parent b2ca709 commit ff98a21
Showing 1 changed file with 44 additions and 44 deletions.
88 changes: 44 additions & 44 deletions packages/bot/src/register.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,50 +375,50 @@ const payload: RESTPutAPIApplicationCommandsJSONBody = [
}),
],
},
{
name: "pickems",
description: "Interact with Pickems in this server",
dm_permission: false,
default_member_permissions: new PermissionsBitField(
PermissionFlags.ManageGuild,
).toString(),
options: [
{
type: ApplicationCommandOptionType.Subcommand,
name: "leaderboard",
description: "See the Pickems leaderboard",
options: [
getLeagueOption({
description: "The league to see the leaderboard for",
noKhl: true,
}),
{
type: ApplicationCommandOptionType.String,
name: "season",
description:
"The season to get stats for. If not specified, uses the current season",
autocomplete: true,
},
],
},
{
type: ApplicationCommandOptionType.Subcommand,
name: "me",
description: "See your personal Pickems stats",
options: [
getLeagueOption({
description: "The league to see the leaderboard for",
noKhl: true,
}),
],
},
{
type: ApplicationCommandOptionType.Subcommand,
name: "purge",
description: "Erase all your Pickems data",
},
],
},
// {
// name: "pickems",
// description: "Interact with Pickems in this server",
// dm_permission: false,
// default_member_permissions: new PermissionsBitField(
// PermissionFlags.ManageGuild,
// ).toString(),
// options: [
// {
// type: ApplicationCommandOptionType.Subcommand,
// name: "leaderboard",
// description: "See the Pickems leaderboard",
// options: [
// getLeagueOption({
// description: "The league to see the leaderboard for",
// noKhl: true,
// }),
// {
// type: ApplicationCommandOptionType.String,
// name: "season",
// description:
// "The season to get stats for. If not specified, uses the current season",
// autocomplete: true,
// },
// ],
// },
// {
// type: ApplicationCommandOptionType.Subcommand,
// name: "me",
// description: "See your personal Pickems stats",
// options: [
// getLeagueOption({
// description: "The league to see the leaderboard for",
// noKhl: true,
// }),
// ],
// },
// {
// type: ApplicationCommandOptionType.Subcommand,
// name: "purge",
// description: "Erase all your Pickems data",
// },
// ],
// },
{
name: "about",
description: "About this bot",
Expand Down

0 comments on commit ff98a21

Please sign in to comment.