Equicord/src/equicordplugins/noAppsAllowed/index.tsx
2024-08-18 00:20:36 -04:00

25 lines
573 B
TypeScript

/*
* Vencord, a Discord client mod
* Copyright (c) 2023 Vendicated and contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
import { EquicordDevs } from "@utils/constants";
import definePlugin from "@utils/types";
export default definePlugin({
name: "NoAppsAllowed",
description: "returns the bot's tag :skulk:",
authors: [EquicordDevs.kvba],
patches: [
{
find: ",APP_TAG:\"",
replacement: {
match: /APP_TAG:".*?"/,
replace: "APP_TAG:\"BOT\""
}
}
],
});