From 1b6f23d75f11dae217371058bc63bea2168b882d Mon Sep 17 00:00:00 2001 From: "Jill \"oatmealine\" Monoids" Date: Mon, 27 Nov 2023 15:13:43 +0300 Subject: [PATCH] unrestricted pronounce!!! --- src/commands/pronouns.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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;