chore: remove linked account command
vi did:web:vt3e.cat
Thu, 07 May 2026 23:02:57 +0100
2 files changed,
34 insertions(+),
34 deletions(-)
M
src/interactions/commands/roblox/banHistory.ts
→
src/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.ts
→
src/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")