feat(plugin): add muteNewGuild Plugin (#17)
This commit is contained in:
parent
ef353f1d66
commit
175bf1b693
1 changed files with 19 additions and 0 deletions
19
src/plugins/muteNewGuild.ts
Normal file
19
src/plugins/muteNewGuild.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
import definePlugin from "../utils/types";
|
||||
|
||||
export default definePlugin({
|
||||
name: "MuteNewGuild",
|
||||
description: "Mutes newly joined guilds",
|
||||
authors: [{
|
||||
name:"Glitchy",
|
||||
id: 269567451199569920n
|
||||
}],
|
||||
patches: [
|
||||
{
|
||||
find: ",acceptInvite:function",
|
||||
replacement: {
|
||||
match: /(\w=null!==[^;]+)/,
|
||||
replace: "$1;Vencord.Webpack.findByProps('updateGuildNotificationSettings').updateGuildNotificationSettings($1,{'muted':true,'suppress_everyone':true,'suppress_roles':true})"
|
||||
}
|
||||
}
|
||||
],
|
||||
})
|
Loading…
Reference in a new issue