feat(plugin): No RPC (#84)

This commit is contained in:
Cynthia Foxwell 2022-10-10 20:50:42 -06:00 committed by GitHub
parent 7a0560b9d4
commit 39a7b2f5a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
src/plugins/noRPC.ts Normal file
View file

@ -0,0 +1,17 @@
import definePlugin from "../utils/types";
import { Devs } from "../utils/constants";
export default definePlugin({
name: "No RPC",
description: "Disables Discord's RPC server.",
authors: [Devs.Cyn],
patches: [
{
find: '.ensureModule("discord_rpc")',
replacement: {
match: /\.ensureModule\("discord_rpc"\)\.then\(\(.+?\)\)}/,
replace: '.ensureModule("discord_rpc")}',
},
},
],
});