all repos — stealth-developers @ b0c3bb235f1bd9ba73d93518d8d8a56f21dfd289

chore: remove linked account command
vi did:web:vt3e.cat
Thu, 07 May 2026 23:02:57 +0100
commit

b0c3bb235f1bd9ba73d93518d8d8a56f21dfd289

parent

90c19706a9f0d89e36488841eb1bcce224cc3fa9

2 files changed, 34 insertions(+), 34 deletions(-)

jump to
M src/interactions/commands/roblox/banHistory.tssrc/interactions/commands/roblox/banHistory.ts

@@ -21,30 +21,30 @@ .setName("ban-history")

.setDescription( `Get a user's ban history in the selected ${config.terminology}`, ) - .addSubcommand((subcommand) => - subcommand - .setName("discord") - .setDescription("Use Bloxlink to get Roblox info from a Discord user") + // .addSubcommand((subcommand) => + // subcommand + // .setName("discord") + // .setDescription("Use Bloxlink to get Roblox info from a Discord user") - .addUserOption((option) => - option - .setName("user") - .setDescription("The Discord user to look up") - .setRequired(true), - ) - .addStringOption((option) => - option - .setName(config.terminology) - .setDescription(`The ${config.terminology} to filter by (optional)`) - .addChoices( - ...Object.values(config.projects).map((project) => ({ - name: project.displayName, - value: project.name, - })), - ) - .setRequired(true), - ), - ) + // .addUserOption((option) => + // option + // .setName("user") + // .setDescription("The Discord user to look up") + // .setRequired(true), + // ) + // .addStringOption((option) => + // option + // .setName(config.terminology) + // .setDescription(`The ${config.terminology} to filter by (optional)`) + // .addChoices( + // ...Object.values(config.projects).map((project) => ({ + // name: project.displayName, + // value: project.name, + // })), + // ) + // .setRequired(true), + // ), + // ) .addSubcommand((subcommand) => subcommand .setName("roblox")
M src/interactions/commands/roblox/getUser.tssrc/interactions/commands/roblox/getUser.ts

@@ -13,17 +13,17 @@

const commandData = new SlashCommandBuilder() .setName("user") .setDescription("Get information about a Roblox user") - .addSubcommand((subcommand) => - subcommand - .setName("discord") - .setDescription("Use Bloxlink to get Roblox info from a Discord user") - .addUserOption((option) => - option - .setName("user") - .setDescription("The Discord user to look up") - .setRequired(true), - ), - ) + // .addSubcommand((subcommand) => + // subcommand + // .setName("discord") + // .setDescription("Use Bloxlink to get Roblox info from a Discord user") + // .addUserOption((option) => + // option + // .setName("user") + // .setDescription("The Discord user to look up") + // .setRequired(true), + // ), + // ) .addSubcommand((subcommand) => subcommand .setName("roblox")