diff --git a/src/commands/color.ts b/src/commands/color.ts index 318ecd8..a2179ad 100644 --- a/src/commands/color.ts +++ b/src/commands/color.ts @@ -1,7 +1,6 @@ import { RoleCreateOptions, GuildMember, CommandInteraction, EmbedBuilder, TextChannel, ActionRowBuilder, ButtonBuilder, ButtonStyle, SlashCommandBuilder } from 'discord.js'; import { default as parseColor, Color } from 'parse-color'; import { isColorRole, COLOR_ROLE_SEPERATOR } from '../lib/assignableRoles'; -import { knownServers } from '../lib/knownServers'; import * as log from '../lib/log'; import { Command } from '../types/index'; @@ -46,9 +45,8 @@ export default { ) .addBooleanOption((option) => option.setName('preview').setDescription('Preview the color instead of applying it') - ), - - serverWhitelist: [...knownServers.firepit], + ) + .setDefaultPermission(0), execute: async (interaction: CommandInteraction) => { if (!interaction.isChatInputCommand()) return;