mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-27 15:34:26 -04:00
Updates
This commit is contained in:
parent
6d0658c60d
commit
093ec3b30b
20 changed files with 953 additions and 1125 deletions
32
src/equicordplugins/noAppsAllowed/index.tsx
Normal file
32
src/equicordplugins/noAppsAllowed/index.tsx
Normal 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\""
|
||||
}
|
||||
}
|
||||
],
|
||||
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue