diff --git a/src/commands/pronouns.ts b/src/commands/pronouns.ts index bee3d11..76bcb5d 100644 --- a/src/commands/pronouns.ts +++ b/src/commands/pronouns.ts @@ -1,6 +1,5 @@ import { RoleCreateOptions, GuildMember, CommandInteraction, SlashCommandBuilder } from 'discord.js'; import { pronouns, PRONOUN_ROLE_SEPERATOR } from '../lib/assignableRoles'; -import { knownServers } from '../lib/knownServers'; import * as log from '../lib/log'; import { Command } from '../types/index'; @@ -18,9 +17,8 @@ export default { .setDescription('Pronoun to add. If you already have a pronoun, you can specify it to remove it.') .setRequired(true) .setChoices(...Array.from(pronouns.values()).map(extendOption)) - ), - - serverWhitelist: [...knownServers.firepit], + ) + .setDefaultPermission(0), execute: async (interaction: CommandInteraction) => { if (!interaction.isChatInputCommand()) return;