Equicord/src/equicordplugins/noAppsAllowed/index.tsx
meowabyte 8dda07123b
Changes to my plugins + username change
+ Username change from kvba to meowabyte
+ Updated my plugins to most recent version (from my repo)
2025-06-14 22:25:56 +02:00

25 lines
603 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.meowabyte],
patches: [
{
find: "#{intl::APP_TAG::hash}\":",
replacement: {
match: /(#{intl::APP_TAG::hash}"):".*?"/,
replace: '$1:"BOT"'
}
}
],
});