mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-23 13:27:03 -04:00
25 lines
573 B
TypeScript
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\""
|
|
}
|
|
}
|
|
],
|
|
|
|
});
|