This commit is contained in:
thororen 2024-04-29 17:51:57 -04:00
parent 6d0658c60d
commit 093ec3b30b
20 changed files with 953 additions and 1125 deletions

View file

@ -0,0 +1,32 @@
/*
* 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\""
}
},
{
find: ",APP_TAG:\"",
replacement: {
match: /APP_TAG:".*?"/,
replace: "APP_TAG:\"BOT\""
}
}
],
});