/* * Vencord, a Discord client mod * Copyright (c) 2024 Vendicated and contributors * SPDX-License-Identifier: GPL-3.0-or-later */ import { definePluginSettings } from "@api/Settings"; import { Devs } from "@utils/constants"; import definePlugin, { OptionType } from "@utils/types"; const settings = definePluginSettings({ autoMuteBlocked: { type: OptionType.BOOLEAN, default: true, description: "Automatically mute blocked users.", restartNeeded: true } }); export default definePlugin({ name: "Mute Blocked Users", description: "Mute (voice) blocked users for easy recognition.", authors: [Devs.notvexi], settings });