74c3930e0a
* eslint * workflow * lint main
18 lines
583 B
TypeScript
18 lines
583 B
TypeScript
import definePlugin from "../utils/types";
|
|
import { Devs } from "../utils/constants";
|
|
|
|
export default definePlugin({
|
|
name: "MuteNewGuild",
|
|
description: "Mutes newly joined guilds",
|
|
authors: [Devs.Glitch],
|
|
patches: [
|
|
{
|
|
find: ",acceptInvite:function",
|
|
replacement: {
|
|
match: /(\w=null!==[^;]+)/,
|
|
replace: "$1;Vencord.Webpack.findByProps('updateGuildNotificationSettings').updateGuildNotificationSettings($1,{'muted':true,'suppress_everyone':true,'suppress_roles':true})"
|
|
}
|
|
}
|
|
],
|
|
});
|