feat(plugin): add NoReplyMention (#23)
This commit is contained in:
parent
19801321cc
commit
ca2f9d937c
19
src/plugins/noReplyMention.ts
Normal file
19
src/plugins/noReplyMention.ts
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
import definePlugin from "../utils/types";
|
||||||
|
|
||||||
|
export default definePlugin({
|
||||||
|
name: "NoReplyMention",
|
||||||
|
description: "Disables reply pings by default",
|
||||||
|
authors: [{
|
||||||
|
name: "DustyAngel47",
|
||||||
|
id: 714583473804935238n
|
||||||
|
}],
|
||||||
|
patches: [
|
||||||
|
{
|
||||||
|
find: "CREATE_PENDING_REPLY:function",
|
||||||
|
replacement: {
|
||||||
|
match: /CREATE_PENDING_REPLY:function\((.{1,2})\){/,
|
||||||
|
replace: "CREATE_PENDING_REPLY:function($1){$1.shouldMention=false;"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})
|
Loading…
Reference in a new issue